-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.68 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.68 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-mini",
"version": "0.0.1",
"private": true,
"type": "module",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.mjs",
"module": "./dist/esm/index.js",
"require": "./dist/umd/index.js"
}
},
"scripts": {
"dev": "vite && vite --open",
"serve": "vite preview",
"gen": "node ./locales/gen_i18n.js",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"prepare": "husky",
"test": "vitest",
"test:e2e": "cypress open",
"test:unit": "vitest",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@tailwindcss/postcss": "^4.0.10",
"@tailwindcss/vite": "^4.0.6",
"@tanstack/react-router": "^1.109.2",
"ahooks": "^3.8.4",
"alova": "^3.2.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^25.0.1",
"i18next-browser-languagedetector": "^8.0.4",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"lucide-react": "^0.503.0",
"motion": "^12.4.7",
"nprogress": "^0.2.0",
"postcss": "^8.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.4.1",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.10",
"tailwindcss-animate": "^1.0.7",
"use-file-picker": "^2.1.2",
"use-immer": "^0.11.0",
"uuid": "^11.1.0",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@tanstack/eslint-config": "^0.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@antfu/eslint-config": "^4.3.0",
"@eslint-react/eslint-plugin": "^1.27.0",
"@eslint/js": "^9.21.0",
"@tanstack/router-devtools": "^1.109.2",
"@tanstack/router-plugin": "^1.109.2",
"@types/lodash": "^4.17.15",
"@types/node": "22.13.9",
"@types/nprogress": "^0.2.3",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react-swc": "^3.8.0",
"cypress": "^14.2.0",
"cypress-vite": "^1.6.0",
"eslint": "^9.21.0",
"eslint-plugin-cypress": "^4.2.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"glob": "^11.0.1",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"mockjs": "^1.1.0",
"sass": "^1.85.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.1.1",
"vite-plugin-mock": "^3.0.2",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^3.0.5",
"web-vitals": "^4.2.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}