]> Untitled Git - lemmy-ui.git/blob - package.json
Allow selecting from all languages in person settings (fixes #1971) (#1985)
[lemmy-ui.git] / package.json
1 {
2   "name": "lemmy-ui",
3   "version": "0.18.2-rc.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     "analyze": "webpack --mode=none",
10     "prebuild:dev": "yarn clean && node generate_translations.js",
11     "build:dev": "webpack --env COMMIT_HASH=$(git rev-parse --short HEAD) --mode=development",
12     "prebuild:prod": "yarn clean && node generate_translations.js",
13     "build:prod": "webpack --env COMMIT_HASH=$(git rev-parse --short HEAD) --mode=production",
14     "clean": "yarn run rimraf dist",
15     "dev": "yarn build:dev --watch",
16     "lint": "yarn translations:generate && tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx \"src/**\" && prettier --check \"src/**/*.{ts,tsx,js,css,scss}\"",
17     "prepare": "husky install",
18     "themes:build": "sass src/assets/css/themes/:src/assets/css/themes",
19     "themes:watch": "sass --watch src/assets/css/themes/:src/assets/css/themes",
20     "translations:generate": "node generate_translations.js",
21     "translations:init": "git submodule init && yarn translations:update",
22     "translations:update": "git submodule update --remote --recursive"
23   },
24   "lint-staged": {
25     "*.{ts,tsx,js}": [
26       "prettier --write",
27       "eslint --fix"
28     ],
29     "*.{css, scss}": [
30       "prettier --write"
31     ],
32     "package.json": [
33       "sortpack"
34     ]
35   },
36   "dependencies": {
37     "@babel/plugin-proposal-decorators": "^7.21.0",
38     "@babel/plugin-transform-runtime": "^7.21.4",
39     "@babel/plugin-transform-typescript": "^7.21.3",
40     "@babel/preset-env": "7.21.5",
41     "@babel/preset-typescript": "^7.21.5",
42     "@babel/runtime": "^7.21.5",
43     "@emoji-mart/data": "^1.1.0",
44     "autosize": "^6.0.1",
45     "babel-loader": "^9.1.2",
46     "babel-plugin-inferno": "^6.6.0",
47     "bootstrap": "^5.2.3",
48     "check-password-strength": "^2.0.7",
49     "classnames": "^2.3.1",
50     "clean-webpack-plugin": "^4.0.0",
51     "cookie": "^0.5.0",
52     "copy-webpack-plugin": "^11.0.0",
53     "cross-fetch": "^4.0.0",
54     "css-loader": "^6.7.3",
55     "date-fns": "^2.30.0",
56     "emoji-mart": "^5.4.0",
57     "emoji-short-name": "^2.0.0",
58     "express": "~4.18.2",
59     "history": "^5.3.0",
60     "html-to-text": "^9.0.5",
61     "i18next": "^23.2.8",
62     "inferno": "^8.2.2",
63     "inferno-create-element": "^8.2.2",
64     "inferno-helmet": "^5.2.1",
65     "inferno-hydrate": "^8.2.2",
66     "inferno-i18next-dess": "0.0.2",
67     "inferno-router": "^8.2.2",
68     "inferno-server": "^8.2.2",
69     "jwt-decode": "^3.1.2",
70     "lemmy-js-client": "0.18.1",
71     "lodash.isequal": "^4.5.0",
72     "markdown-it": "^13.0.1",
73     "markdown-it-container": "^3.0.0",
74     "markdown-it-emoji": "^2.0.2",
75     "markdown-it-footnote": "^3.0.3",
76     "markdown-it-html5-embed": "^1.0.0",
77     "markdown-it-ruby": "^0.1.1",
78     "markdown-it-sub": "^1.0.0",
79     "markdown-it-sup": "^1.0.0",
80     "mini-css-extract-plugin": "^2.7.5",
81     "register-service-worker": "^1.7.2",
82     "run-node-webpack-plugin": "^1.3.0",
83     "sanitize-html": "^2.11.0",
84     "sass": "^1.63.6",
85     "sass-loader": "^13.3.2",
86     "serialize-javascript": "^6.0.1",
87     "service-worker-webpack": "^1.0.0",
88     "sharp": "^0.32.1",
89     "tippy.js": "^6.3.7",
90     "toastify-js": "^1.12.0",
91     "tributejs": "^5.1.3",
92     "webpack": "5.88.1",
93     "webpack-cli": "^5.1.4",
94     "webpack-node-externals": "^3.0.0"
95   },
96   "devDependencies": {
97     "@babel/core": "^7.21.8",
98     "@types/autosize": "^4.0.0",
99     "@types/bootstrap": "^5.2.6",
100     "@types/cookie": "^0.5.1",
101     "@types/express": "^4.17.17",
102     "@types/html-to-text": "^9.0.0",
103     "@types/lodash.isequal": "^4.5.6",
104     "@types/markdown-it": "^12.2.3",
105     "@types/markdown-it-container": "^2.0.5",
106     "@types/node": "^20.4.0",
107     "@types/path-browserify": "^1.0.0",
108     "@types/sanitize-html": "^2.9.0",
109     "@types/serialize-javascript": "^5.0.1",
110     "@types/toastify-js": "^1.11.1",
111     "@typescript-eslint/eslint-plugin": "^5.61.0",
112     "@typescript-eslint/parser": "^5.61.0",
113     "eslint": "^8.44.0",
114     "eslint-plugin-inferno": "^7.32.2",
115     "eslint-plugin-jsx-a11y": "^6.7.1",
116     "eslint-plugin-prettier": "^4.2.1",
117     "husky": "^8.0.3",
118     "import-sort-style-module": "^6.0.0",
119     "lint-staged": "^13.2.3",
120     "prettier": "^2.8.8",
121     "prettier-plugin-import-sort": "^0.0.7",
122     "prettier-plugin-organize-imports": "^3.2.2",
123     "prettier-plugin-packagejson": "^2.4.4",
124     "rimraf": "^5.0.0",
125     "sortpack": "^2.3.4",
126     "style-loader": "^3.3.2",
127     "terser": "^5.18.2",
128     "typescript": "^5.1.6",
129     "typescript-language-server": "^3.3.2",
130     "webpack-bundle-analyzer": "^4.9.0",
131     "webpack-dev-server": "4.15.1"
132   },
133   "packageManager": "yarn@1.22.19",
134   "engines": {
135     "node": ">=8.9.0"
136   },
137   "engineStrict": true,
138   "importSort": {
139     ".js, .jsx, .ts, .tsx": {
140       "style": "module",
141       "parser": "typescript"
142     }
143   }
144 }