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