]> Untitled Git - lemmy-ui.git/blob - package.json
Add option to set site default theme (fixes #559)
[lemmy-ui.git] / package.json
1 {
2   "name": "lemmy-ui",
3   "description": "An isomorphic UI for lemmy",
4   "version": "0.15.2",
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.6.0",
21     "autosize": "^5.0.1",
22     "check-password-strength": "^2.0.3",
23     "choices.js": "^10.0.0",
24     "classnames": "^2.3.1",
25     "emoji-short-name": "^1.0.0",
26     "express": "~4.17.1",
27     "i18next": "^21.5.4",
28     "inferno": "^7.4.11",
29     "inferno-create-element": "^7.4.11",
30     "inferno-helmet": "^5.2.1",
31     "inferno-hydrate": "^7.4.11",
32     "inferno-i18next-dess": "^0.0.1",
33     "inferno-router": "^7.4.11",
34     "inferno-server": "^7.4.11",
35     "isomorphic-cookie": "^1.2.4",
36     "jwt-decode": "^3.1.2",
37     "markdown-it": "^12.1.0",
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.1",
44     "register-service-worker": "^1.7.2",
45     "rxjs": "^7.4.0",
46     "sass": "^1.47.0",
47     "serialize-javascript": "^6.0.0",
48     "tippy.js": "^6.3.7",
49     "toastify-js": "^1.11.2",
50     "tributejs": "^5.1.3",
51     "websocket-ts": "^1.1.1"
52   },
53   "devDependencies": {
54     "@babel/core": "^7.16.0",
55     "@babel/plugin-transform-runtime": "^7.16.4",
56     "@babel/plugin-transform-typescript": "^7.16.1",
57     "@babel/preset-env": "7.16.8",
58     "@babel/preset-typescript": "^7.16.0",
59     "@babel/runtime": "^7.16.3",
60     "@types/autosize": "^4.0.0",
61     "@types/express": "^4.17.13",
62     "@types/node": "^17.0.8",
63     "@types/node-fetch": "^2.5.11",
64     "@types/serialize-javascript": "^5.0.1",
65     "@typescript-eslint/eslint-plugin": "^5.6.0",
66     "babel-loader": "^8.2.3",
67     "babel-plugin-inferno": "^6.3.0",
68     "bootstrap": "^5.1.3",
69     "bootswatch": "^5.1.3",
70     "clean-webpack-plugin": "^4.0.0",
71     "copy-webpack-plugin": "^10.0.0",
72     "css-loader": "^6.5.1",
73     "eslint": "^8.4.0",
74     "eslint-plugin-prettier": "^4.0.0",
75     "husky": "^7.0.4",
76     "import-sort-style-module": "^6.0.0",
77     "lemmy-js-client": "0.15.4-rc.2",
78     "lint-staged": "^12.1.2",
79     "mini-css-extract-plugin": "^2.4.5",
80     "node-fetch": "^2.6.1",
81     "prettier": "^2.5.1",
82     "prettier-plugin-import-sort": "^0.0.7",
83     "prettier-plugin-organize-imports": "^2.3.4",
84     "prettier-plugin-packagejson": "^2.2.15",
85     "rimraf": "^3.0.2",
86     "run-node-webpack-plugin": "^1.3.0",
87     "sass-loader": "^12.3.0",
88     "sortpack": "^2.2.0",
89     "style-loader": "^3.3.1",
90     "terser": "^5.10.0",
91     "typescript": "^4.5.2",
92     "webpack": "5.66.0",
93     "webpack-cli": "^4.9.1",
94     "webpack-dev-server": "4.7.3",
95     "webpack-node-externals": "^3.0.0"
96   },
97   "engines": {
98     "node": ">=8.9.0"
99   },
100   "engineStrict": true,
101   "lint-staged": {
102     "*.{ts,tsx,js}": [
103       "prettier --write",
104       "eslint --fix"
105     ],
106     "package.json": [
107       "sortpack"
108     ]
109   },
110   "importSort": {
111     ".js, .jsx, .ts, .tsx": {
112       "style": "module",
113       "parser": "typescript"
114     }
115   }
116 }