]> Untitled Git - lemmy-ui.git/blob - package.json
Merge branch 'main' into custom-emojis
[lemmy-ui.git] / package.json
1 {
2   "name": "lemmy-ui",
3   "description": "An isomorphic UI for lemmy",
4   "version": "0.17.1",
5   "author": "Dessalines <tyhou13@gmx.com>",
6   "license": "AGPL-3.0",
7   "scripts": {
8     "build:dev": "webpack --mode=development",
9     "build:prod": "webpack --mode=production",
10     "clean": "yarn run rimraf dist",
11     "dev": "yarn start",
12     "lint": "node generate_translations.js && tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src && prettier --check 'src/**/*.tsx'",
13     "prebuild:dev": "yarn clean && node generate_translations.js",
14     "prebuild:prod": "yarn clean && node generate_translations.js",
15     "prepare": "husky install",
16     "start": "yarn build:dev --watch"
17   },
18   "repository": "https://github.com/LemmyNet/lemmy-ui",
19   "dependencies": {
20     "@babel/plugin-proposal-decorators": "^7.21.0",
21     "@babel/plugin-transform-runtime": "^7.21.0",
22     "@babel/plugin-transform-typescript": "^7.21.0",
23     "@babel/preset-env": "7.20.2",
24     "@babel/preset-typescript": "^7.21.0",
25     "@babel/runtime": "^7.21.0",
26     "@emoji-mart/data": "^1.1.0",
27     "autosize": "^6.0.1",
28     "babel-loader": "^9.1.2",
29     "babel-plugin-inferno": "^6.6.0",
30     "check-password-strength": "^2.0.7",
31     "choices.js": "^10.2.0",
32     "classnames": "^2.3.1",
33     "clean-webpack-plugin": "^4.0.0",
34     "copy-webpack-plugin": "^11.0.0",
35     "css-loader": "^6.7.3",
36     "emoji-mart": "^5.4.0",
37     "emoji-short-name": "^2.0.0",
38     "express": "~4.18.2",
39     "html-to-text": "^9.0.4",
40     "i18next": "^22.4.10",
41     "inferno": "^8.0.6",
42     "inferno-create-element": "^8.0.6",
43     "inferno-helmet": "^5.2.1",
44     "inferno-hydrate": "^8.0.6",
45     "inferno-i18next-dess": "0.0.2",
46     "inferno-router": "^8.0.6",
47     "inferno-server": "^8.0.6",
48     "isomorphic-cookie": "^1.2.4",
49     "jwt-decode": "^3.1.2",
50     "lemmy-js-client": "0.17.2-rc.3",
51     "markdown-it": "^13.0.1",
52     "markdown-it-container": "^3.0.0",
53     "markdown-it-emoji": "^2.0.2",
54     "markdown-it-footnote": "^3.0.3",
55     "markdown-it-html5-embed": "^1.0.0",
56     "markdown-it-sub": "^1.0.0",
57     "markdown-it-sup": "^1.0.0",
58     "mini-css-extract-plugin": "^2.7.2",
59     "moment": "^2.29.4",
60     "node-fetch": "^2.6.1",
61     "register-service-worker": "^1.7.2",
62     "run-node-webpack-plugin": "^1.3.0",
63     "rxjs": "^7.8.0",
64     "sanitize-html": "^2.10.0",
65     "sass": "^1.58.3",
66     "sass-loader": "^13.2.0",
67     "serialize-javascript": "^6.0.1",
68     "tippy.js": "^6.3.7",
69     "toastify-js": "^1.12.0",
70     "tributejs": "^5.1.3",
71     "webpack": "5.75.0",
72     "webpack-cli": "^5.0.1",
73     "webpack-node-externals": "^3.0.0",
74     "websocket-ts": "^1.1.1"
75   },
76   "devDependencies": {
77     "@babel/core": "^7.21.0",
78     "@types/autosize": "^4.0.0",
79     "@types/express": "^4.17.17",
80     "@types/html-to-text": "^9.0.0",
81     "@types/markdown-it": "^12.2.3",
82     "@types/markdown-it-container": "^2.0.5",
83     "@types/node": "^18.14.0",
84     "@types/node-fetch": "^2.6.2",
85     "@types/sanitize-html": "^2.8.0",
86     "@types/serialize-javascript": "^5.0.1",
87     "@types/toastify-js": "^1.11.1",
88     "@typescript-eslint/eslint-plugin": "^5.53.0",
89     "@typescript-eslint/parser": "^5.53.0",
90     "bootstrap": "^5.2.3",
91     "bootswatch": "^5.2.3",
92     "eslint": "^8.34.0",
93     "eslint-plugin-inferno": "^7.32.1",
94     "eslint-plugin-prettier": "^4.2.1",
95     "husky": "^8.0.3",
96     "import-sort-style-module": "^6.0.0",
97     "lint-staged": "^13.1.2",
98     "prettier": "^2.8.4",
99     "prettier-plugin-import-sort": "^0.0.7",
100     "prettier-plugin-organize-imports": "^3.2.2",
101     "prettier-plugin-packagejson": "^2.4.3",
102     "rimraf": "^4.1.2",
103     "sortpack": "^2.3.3",
104     "style-loader": "^3.3.1",
105     "terser": "^5.16.4",
106     "typescript": "^4.9.5",
107     "webpack-dev-server": "4.11.1"
108   },
109   "engines": {
110     "node": ">=8.9.0"
111   },
112   "engineStrict": true,
113   "lint-staged": {
114     "*.{ts,tsx,js}": [
115       "prettier --write",
116       "eslint --fix"
117     ],
118     "package.json": [
119       "sortpack"
120     ]
121   },
122   "importSort": {
123     ".js, .jsx, .ts, .tsx": {
124       "style": "module",
125       "parser": "typescript"
126     }
127   }
128 }