-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "kennzeichen-raten",
"private": true,
"version": "1.12.0",
"author": "Bran van der Meer <[email protected]>",
"license": "ISC",
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "NODE_NO_WARNINGS=1 stmux -w always -n -M -- [ \"vite\" .. \"vitest --watch src\" ]",
"test": "npm run lint && vitest --run src",
"build": "npm run lint && vite build",
"lint": "npm run lint:eslint && npm run lint:translations",
"lint:eslint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint:translations": "NODE_NO_WARNINGS=1 node src/hooks/translation/linter.js",
"preview": "npm run build && vite preview",
"deploy": "npm version minor -m \"chore: Release version %s\" && npm run build && gh-pages -d dist"
},
"dependencies": {
"js-levenshtein": "^1.1.6",
"json5": "^2.2.3",
"modern-normalize": "^2.0.0",
"ramda": "^0.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0"
},
"devDependencies": {
"@babel/parser": "^7.23.5",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@babel/traverse": "^7.23.5",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"gh-pages": "^6.1.0",
"prettier": "^3.0.2",
"stmux": "^1.8.7",
"styled-components": "^6.1.1",
"vite": "^4.4.5",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.34.2"
},
"prettier": {
"printWidth": 60,
"semi": false,
"singleQuote": true
}
}