]> Untitled Git - lemmy-ui.git/blob - package.json
Merge pull request #361 from unbeatable-101/patch-1
[lemmy-ui.git] / package.json
1 {
2   "name": "lemmy-ui",
3   "description": "An isomorphic UI for lemmy",
4   "author": "Dessalines <tyhou13@gmx.com>",
5   "license": "AGPL-3.0",
6   "scripts": {
7     "build:dev": "webpack --mode=development",
8     "build:prod": "webpack --mode=production",
9     "clean": "yarn run rimraf dist",
10     "dev": "yarn start",
11     "lint": "node generate_translations.js && tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src",
12     "prebuild:dev": "yarn clean && node generate_translations.js",
13     "prebuild:prod": "yarn clean && node generate_translations.js",
14     "start": "yarn build:dev --watch"
15   },
16   "repository": "https://github.com/LemmyNet/lemmy-ui",
17   "dependencies": {
18     "@typescript-eslint/parser": "^4.28.3",
19     "autosize": "^5.0.1",
20     "choices.js": "^9.0.1",
21     "emoji-short-name": "^1.0.0",
22     "express": "~4.17.1",
23     "i18next": "^20.3.3",
24     "inferno": "^7.4.8",
25     "inferno-create-element": "^7.4.8",
26     "inferno-helmet": "^5.2.1",
27     "inferno-hydrate": "^7.4.8",
28     "inferno-i18next": "github:nimbusec-oss/inferno-i18next#semver:^7.4.2",
29     "inferno-router": "^7.4.8",
30     "inferno-server": "^7.4.8",
31     "isomorphic-cookie": "^1.2.4",
32     "jwt-decode": "^3.1.2",
33     "markdown-it": "^12.1.0",
34     "markdown-it-container": "^3.0.0",
35     "markdown-it-sub": "^1.0.0",
36     "markdown-it-sup": "^1.0.0",
37     "moment": "^2.29.1",
38     "reconnecting-websocket": "^4.4.0",
39     "register-service-worker": "^1.7.2",
40     "rxjs": "^7.2.0",
41     "serialize-javascript": "^6.0.0",
42     "tippy.js": "^6.3.1",
43     "toastify-js": "^1.11.1",
44     "tributejs": "^5.1.3",
45     "ws": "^7.5.3"
46   },
47   "devDependencies": {
48     "@babel/core": "^7.14.6",
49     "@babel/plugin-transform-runtime": "^7.14.5",
50     "@babel/plugin-transform-typescript": "^7.14.6",
51     "@babel/preset-env": "7.14.7",
52     "@babel/preset-typescript": "^7.14.5",
53     "@babel/runtime": "^7.14.6",
54     "@types/autosize": "^4.0.0",
55     "@types/express": "^4.17.13",
56     "@types/node": "^16.3.2",
57     "@types/node-fetch": "^2.5.11",
58     "@types/serialize-javascript": "^5.0.1",
59     "@typescript-eslint/eslint-plugin": "^4.28.3",
60     "babel-loader": "^8.2.2",
61     "babel-plugin-inferno": "^6.3.0",
62     "bootstrap": "^5.0.2",
63     "bootswatch": "^5.0.2",
64     "clean-webpack-plugin": "^4.0.0-alpha.0",
65     "copy-webpack-plugin": "^9.0.1",
66     "css-loader": "^6.0.0",
67     "eslint": "^7.30.0",
68     "eslint-plugin-prettier": "^3.4.0",
69     "husky": "^7.0.1",
70     "import-sort-style-module": "^6.0.0",
71     "iso-639-1": "^2.1.9",
72     "lemmy-js-client": "0.11.3-rc.4",
73     "lint-staged": "^11.0.1",
74     "mini-css-extract-plugin": "^2.1.0",
75     "node-fetch": "^2.6.1",
76     "node-sass": "^6.0.1",
77     "prettier": "^2.3.2",
78     "prettier-plugin-import-sort": "^0.0.7",
79     "prettier-plugin-organize-imports": "^2.2.0",
80     "prettier-plugin-packagejson": "^2.2.11",
81     "rimraf": "^3.0.2",
82     "run-node-webpack-plugin": "^1.3.0",
83     "sass-loader": "^12.1.0",
84     "sortpack": "^2.2.0",
85     "style-loader": "^3.1.0",
86     "terser": "^5.7.1",
87     "typescript": "^4.3.5",
88     "webpack": "5.44.0",
89     "webpack-cli": "^4.7.2",
90     "webpack-dev-server": "3.11.2",
91     "webpack-node-externals": "^3.0.0"
92   },
93   "engines": {
94     "node": ">=8.9.0"
95   },
96   "engineStrict": true,
97   "lint-staged": {
98     "*.{ts,tsx,js}": [
99       "prettier --write",
100       "eslint --fix"
101     ],
102     "package.json": [
103       "sortpack"
104     ]
105   },
106   "importSort": {
107     ".js, .jsx, .ts, .tsx": {
108       "style": "module",
109       "parser": "typescript"
110     }
111   }
112 }