-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
111 lines (111 loc) · 3.19 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-antd-admin",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "React Hooks + TypeScript + Ant Design = react-antd-admin",
"author": "Condor Hero",
"license": "MIT",
"homepage": "https://github.com/condorheroblog/react-antd-admin/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/condorheroblog/react-antd-admin.git"
},
"bugs": {
"url": "https://github.com/condorheroblog/react-antd-admin/issues"
},
"imports": {
"#*": "./*"
},
"scripts": {
"dev": "vite --host",
"build": "NODE_OPTIONS=--max-old-space-size=8192 vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"spa-github-index-page": "node ./scripts/spa-github-index-page.mjs",
"spa-github-404-page": "node ./scripts/spa-github-404-page.mjs",
"analyzer": "vite-bundle-visualizer --output analyzer/stats.html",
"eslint-config-inspector": "npx @eslint/config-inspector",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "simple-git-hooks",
"test": "vitest"
},
"dependencies": {
"@ant-design/icons": "^5.5.2",
"@ant-design/pro-components": "^2.8.3",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tanstack/react-query": "^5.64.1",
"ahooks": "^3.8.4",
"antd": "^5.23.1",
"antd-img-crop": "^4.24.0",
"dayjs": "^1.11.13",
"echarts": "^5.6.0",
"echarts-for-react": "^3.0.2",
"framer-motion": "^11.18.0",
"i18next": "^24.2.1",
"keepalive-for-react": "^3.0.8",
"ky": "^1.7.4",
"nprogress": "^0.2.0",
"react": "18",
"react-dom": "18",
"react-error-boundary": "^5.0.0",
"react-i18next": "^15.4.0",
"react-jss": "^10.10.0",
"react-router": "^7.1.1",
"simplebar-react": "^3.3.0",
"spin-delay": "^2.0.1",
"tailwind-merge": "^2.6.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint-react/eslint-plugin": "^1.23.2",
"@eslint/config-inspector": "^1.0.0",
"@faker-js/faker": "^9.3.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@tanstack/react-query-devtools": "^5.64.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.6",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"code-inspector-plugin": "^0.19.2",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"happy-dom": "^16.6.0",
"lint-staged": "^15.3.0",
"postcss": "^8.5.1",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-fake-server": "^2.2.0",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^v3.0.0-beta.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit"
},
"lint-staged": {
"*": [
"eslint --fix"
]
}
}