]> Untitled Git - lemmy.git/blob - ui/package.json
Fixing issue with multiple notifications.
[lemmy.git] / ui / package.json
1 {
2   "name": "lemmy",
3   "description": "A simple UI for lemmy",
4   "version": "1.0.0",
5   "author": "Dessalines",
6   "license": "GPL-2.0-or-later",
7   "main": "index.js",
8   "scripts": {
9     "build": "node fuse prod",
10     "lint": "eslint --report-unused-disable-directives --ext .js,.ts,.tsx src",
11     "start": "node fuse dev"
12   },
13   "keywords": [],
14   "dependencies": {
15     "@types/autosize": "^3.0.6",
16     "@types/js-cookie": "^2.2.1",
17     "@types/jwt-decode": "^2.2.1",
18     "@types/markdown-it": "^0.0.9",
19     "@types/markdown-it-container": "^2.0.2",
20     "@types/node": "^13.7.0",
21     "autosize": "^4.0.2",
22     "bootswatch": "^4.3.1",
23     "classcat": "^1.1.3",
24     "dotenv": "^8.2.0",
25     "emoji-short-name": "^0.1.0",
26     "husky": "^4.2.1",
27     "i18next": "^19.0.3",
28     "inferno": "^7.0.1",
29     "inferno-i18next": "nimbusec-oss/inferno-i18next",
30     "inferno-router": "^7.0.1",
31     "js-cookie": "^2.2.0",
32     "jwt-decode": "^2.2.0",
33     "markdown-it": "^10.0.0",
34     "markdown-it-container": "^2.0.0",
35     "markdown-it-emoji": "^1.4.0",
36     "moment": "^2.24.0",
37     "prettier": "^1.18.2",
38     "reconnecting-websocket": "^4.3.0",
39     "rxjs": "^6.4.0",
40     "terser": "^4.6.3",
41     "toastify-js": "^1.6.2",
42     "tributejs": "^4.1.1",
43     "twemoji": "^12.1.2",
44     "ws": "^7.0.0"
45   },
46   "devDependencies": {
47     "eslint": "^6.5.1",
48     "eslint-plugin-inferno": "^7.14.3",
49     "eslint-plugin-jane": "^7.0.2",
50     "fuse-box": "^3.1.3",
51     "lint-staged": "^10.0.2",
52     "sortpack": "^2.0.1",
53     "ts-node": "^8.6.2",
54     "ts-transform-classcat": "^0.0.2",
55     "ts-transform-inferno": "^4.0.2",
56     "typescript": "^3.7.5"
57   },
58   "engines": {
59     "node": ">=8.9.0"
60   },
61   "engineStrict": true,
62   "husky": {
63     "hooks": {
64       "pre-commit": "yarn run ts-node translation_report.ts && git add ../README.md && cargo clippy --manifest-path ../server/Cargo.toml --all-targets --all-features -- -D warnings && lint-staged"
65     }
66   },
67   "lint-staged": {
68     "*.{ts,tsx,js}": [
69       "prettier --write",
70       "eslint --fix"
71     ],
72     "../server/src/**/*.rs": [
73       "rustfmt --config-path ../server/.rustfmt.toml"
74     ],
75     "package.json": [
76       "sortpack"
77     ]
78   }
79 }