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