]> Untitled Git - lemmy.git/blob - ui/package.json
Automatically update translation report. Fixes #439
[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     "tributejs": "^4.1.1",
40     "twemoji": "^12.1.2",
41     "ws": "^7.0.0"
42   },
43   "devDependencies": {
44     "eslint": "^6.5.1",
45     "eslint-plugin-inferno": "^7.14.3",
46     "eslint-plugin-jane": "^7.0.0",
47     "fuse-box": "^3.1.3",
48     "lint-staged": "^9.4.2",
49     "sortpack": "^2.0.1",
50     "ts-transform-classcat": "^0.0.2",
51     "ts-transform-inferno": "^4.0.2",
52     "typescript": "^3.5.3"
53   },
54   "engines": {
55     "node": ">=8.9.0"
56   },
57   "engineStrict": true,
58   "husky": {
59     "hooks": {
60       "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"
61     }
62   },
63   "lint-staged": {
64     "*.{ts,tsx,js}": [
65       "prettier --write",
66       "eslint --fix",
67       "git add"
68     ],
69     "../server/src/**/*.rs": [
70       "rustfmt --config-path ../server/.rustfmt.toml",
71       "git add"
72     ],
73     "package.json": [
74       "sortpack",
75       "git add"
76     ]
77   }
78 }