-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "railgun",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"deps:update": "taze",
"deps:upgrade": "taze -w",
"test:e2e": "cross-env NODE_ENV=test playwright test",
"test:e2e:ci": "cross-env CI=true NODE_ENV=test playwright test",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@egoist/tailwindcss-icons": "^1.8.1",
"ahooks": "^3.8.1",
"i18next": "^23.16.5",
"i18next-browser-languagedetector": "^8.0.0",
"jotai": "^2.10.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.1",
"react-router-dom": "^6.28.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"@iconify/json": "^2.2.272",
"@playwright/test": "^1.48.2",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"daisyui": "^4.12.14",
"eslint": "^9.14.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"lint-staged": "^15.2.10",
"postcss": "^8.4.49",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.15",
"taze": "^0.18.0",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-inspect": "^0.8.7",
"vite-plugin-mkcert": "^1.17.6",
"vite-plugin-webfont-dl": "^3.9.5",
"vitest": "^2.1.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix"
]
}
}