]> Untitled Git - lemmy.git/blob - ui/package.json
Done merging http-api and private_message
[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     "autosize": "^4.0.2",
21     "bootswatch": "^4.3.1",
22     "classcat": "^1.1.3",
23     "dotenv": "^8.2.0",
24     "emoji-short-name": "^0.1.0",
25     "husky": "^3.0.9",
26     "i18next": "^19.0.3",
27     "inferno": "^7.0.1",
28     "inferno-i18next": "nimbusec-oss/inferno-i18next",
29     "inferno-router": "^7.0.1",
30     "js-cookie": "^2.2.0",
31     "jwt-decode": "^2.2.0",
32     "markdown-it": "^10.0.0",
33     "markdown-it-container": "^2.0.0",
34     "markdown-it-emoji": "^1.4.0",
35     "moment": "^2.24.0",
36     "prettier": "^1.18.2",
37     "rxjs": "^6.4.0",
38     "terser": "^4.6.0",
39     "toastify-js": "^1.6.2",
40     "tributejs": "^4.1.1",
41     "twemoji": "^12.1.2",
42     "ws": "^7.0.0"
43   },
44   "devDependencies": {
45     "eslint": "^6.5.1",
46     "eslint-plugin-inferno": "^7.14.3",
47     "eslint-plugin-jane": "^7.0.0",
48     "fuse-box": "^3.1.3",
49     "lint-staged": "^9.4.2",
50     "sortpack": "^2.0.1",
51     "ts-transform-classcat": "^0.0.2",
52     "ts-transform-inferno": "^4.0.2",
53     "typescript": "^3.5.3"
54   },
55   "engines": {
56     "node": ">=8.9.0"
57   },
58   "engineStrict": true,
59   "husky": {
60     "hooks": {
61       "pre-commit": "ts-node translation_report.ts && git add ../README.md && cargo clippy --manifest-path ../server/Cargo.toml --all-targets --all-features -- -D warnings && lint-staged"
62     }
63   },
64   "lint-staged": {
65     "*.{ts,tsx,js}": [
66       "prettier --write",
67       "eslint --fix",
68       "git add"
69     ],
70     "../server/src/**/*.rs": [
71       "rustfmt --config-path ../server/.rustfmt.toml",
72       "git add"
73     ],
74     "package.json": [
75       "sortpack",
76       "git add"
77     ]
78   }
79 }