-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.41 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "antd-simple-admin",
"private": true,
"version": "0.1.6",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"eslint": "eslint . --fix --cache",
"stylelint": "stylelint \"**/*.{less,css,scss}\" --fix --cache",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@ant-design/icons": "^5.4.0",
"@ant-design/pro-components": "^2.7.15",
"ahooks": "^3.8.1",
"antd": "^5.20.3",
"antd-style": "^3.6.2",
"axios": "^1.7.5",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"i18next": "^23.14.0",
"i18next-browser-languagedetector": "^8.0.0",
"immer": "^10.1.1",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"overlayscrollbars-react": "^0.5.6",
"query-string": "^9.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-fast-compare": "^3.2.2",
"react-helmet-async": "^2.0.5",
"react-i18next": "^15.0.1",
"react-router-dom": "^6.26.1",
"react-transition-group": "^4.4.5",
"zustand": "^4.5.5"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@faker-js/faker": "^8.4.1",
"@types/crypto-js": "^4.2.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.5.1",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/react-transition-group": "^4.4.11",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.9.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"picocolors": "^1.0.1",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.8.2",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-recess-order": "^5.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2",
"vite-plugin-compression2": "^1.2.0",
"vite-plugin-fake-server": "^2.1.1"
},
"simple-git-hooks": {
"pre-commit": "npx pretty-quick --staged && npm run eslint && npm run stylelint",
"commit-msg": "node scripts/verify-commit.js"
}
}