]> Untitled Git - lemmy-ui.git/blob - package.json
Remove federation strict_allowlist and retry_count. (#867)
[lemmy-ui.git] / package.json
1 {
2   "name": "lemmy-ui",
3   "description": "An isomorphic UI for lemmy",
4   "version": "0.16.5",
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",
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.18.9",
21     "@babel/plugin-transform-runtime": "^7.18.9",
22     "@babel/plugin-transform-typescript": "^7.18.8",
23     "@babel/preset-env": "7.19.3",
24     "@babel/preset-typescript": "^7.18.6",
25     "@babel/runtime": "^7.18.9",
26     "@sniptt/monads": "^0.5.10",
27     "autosize": "^5.0.1",
28     "babel-loader": "^8.2.5",
29     "babel-plugin-inferno": "^6.5.0",
30     "check-password-strength": "^2.0.7",
31     "choices.js": "^10.1.0",
32     "class-transformer": "^0.5.1",
33     "classnames": "^2.3.1",
34     "clean-webpack-plugin": "^4.0.0",
35     "copy-webpack-plugin": "^11.0.0",
36     "css-loader": "^6.7.1",
37     "emoji-short-name": "^2.0.0",
38     "express": "~4.18.1",
39     "html-to-text": "^8.2.1",
40     "i18next": "^21.8.14",
41     "inferno": "^8.0.3",
42     "inferno-create-element": "^8.0.3",
43     "inferno-helmet": "^5.2.1",
44     "inferno-hydrate": "^8.0.3",
45     "inferno-i18next-dess": "0.0.2",
46     "inferno-router": "^8.0.3",
47     "inferno-server": "^8.0.3",
48     "isomorphic-cookie": "^1.2.4",
49     "jwt-decode": "^3.1.2",
50     "lemmy-js-client": "0.17.0-rc.54",
51     "markdown-it": "^13.0.1",
52     "markdown-it-container": "^3.0.0",
53     "markdown-it-footnote": "^3.0.3",
54     "markdown-it-html5-embed": "^1.0.0",
55     "markdown-it-sub": "^1.0.0",
56     "markdown-it-sup": "^1.0.0",
57     "mini-css-extract-plugin": "^2.6.1",
58     "moment": "^2.29.4",
59     "node-fetch": "^2.6.1",
60     "reflect-metadata": "^0.1.13",
61     "register-service-worker": "^1.7.2",
62     "run-node-webpack-plugin": "^1.3.0",
63     "rxjs": "^7.5.6",
64     "sass": "^1.54.0",
65     "sass-loader": "^13.0.2",
66     "serialize-javascript": "^6.0.0",
67     "tippy.js": "^6.3.7",
68     "toastify-js": "^1.12.0",
69     "tributejs": "^5.1.3",
70     "webpack": "5.74.0",
71     "webpack-cli": "^4.10.0",
72     "webpack-node-externals": "^3.0.0",
73     "websocket-ts": "^1.1.1"
74   },
75   "devDependencies": {
76     "@babel/core": "^7.18.9",
77     "@types/autosize": "^4.0.0",
78     "@types/express": "^4.17.13",
79     "@types/html-to-text": "^8.1.1",
80     "@types/markdown-it": "^12.2.3",
81     "@types/markdown-it-container": "^2.0.5",
82     "@types/node": "^18.6.2",
83     "@types/node-fetch": "^2.6.2",
84     "@types/serialize-javascript": "^5.0.1",
85     "@types/toastify-js": "^1.11.1",
86     "@typescript-eslint/eslint-plugin": "^5.31.0",
87     "@typescript-eslint/parser": "^5.31.0",
88     "bootstrap": "^5.2.0",
89     "bootswatch": "^5.2.0",
90     "eslint": "^8.20.0",
91     "eslint-plugin-inferno": "^7.31.8",
92     "eslint-plugin-prettier": "^4.2.1",
93     "husky": "^8.0.1",
94     "import-sort-style-module": "^6.0.0",
95     "lint-staged": "^13.0.3",
96     "prettier": "^2.7.1",
97     "prettier-plugin-import-sort": "^0.0.7",
98     "prettier-plugin-organize-imports": "^3.0.0",
99     "prettier-plugin-packagejson": "^2.2.18",
100     "rimraf": "^3.0.2",
101     "sortpack": "^2.3.0",
102     "style-loader": "^3.3.1",
103     "terser": "^5.14.2",
104     "typescript": "^4.8.4",
105     "webpack-dev-server": "4.11.1"
106   },
107   "engines": {
108     "node": ">=8.9.0"
109   },
110   "engineStrict": true,
111   "lint-staged": {
112     "*.{ts,tsx,js}": [
113       "prettier --write",
114       "eslint --fix"
115     ],
116     "package.json": [
117       "sortpack"
118     ]
119   },
120   "importSort": {
121     ".js, .jsx, .ts, .tsx": {
122       "style": "module",
123       "parser": "typescript"
124     }
125   }
126 }