-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.7 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 3.7 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "chiko-admin",
"type": "module",
"version": "1.0.0",
"private": false,
"packageManager": "pnpm@10.13.1",
"description": "一个基于 React19、Vite、TypeScript、Ant Design 和 UnoCSS 的清新优雅的中后台模版",
"author": {
"name": "Chiko",
"email": "2452559902@qq.com",
"url": "https://github.com/chen-ziwen"
},
"license": "MIT",
"homepage": "https://github.com/chen-ziwen/chiko-admin",
"repository": {
"url": "https://github.com/chen-ziwen/chiko-admin.git"
},
"bugs": {
"url": "https://github.com/chen-ziwen/chiko-admin/issues"
},
"keywords": [
"react",
"better-pages-create",
"react admin",
"react admin template",
"vite",
"typescript",
"ant design",
"react-router-dom",
"react-redux-toolkit",
"unocss"
],
"scripts": {
"dev": "vite",
"preview": "vite preview",
"test": "vite --mode test",
"build": "vite build --mode prod",
"cleanup": "cka clean",
"cz": "git-cz",
"docs:build": "pnpm -F @chiko-admin/docs build",
"docs:clear": "pnpm -F @chiko-admin/docs clear",
"docs:serve": "pnpm -F @chiko-admin/docs serve",
"docs:start": "pnpm -F @chiko-admin/docs start",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"prepare": "husky",
"typecheck": "tsc --noEmit --skipLibCheck",
"upk": "cka update-pkg"
},
"dependencies": {
"@ant-design/v5-patch-for-react-19": "1.0.3",
"@better-pages-create/react-router": "0.1.7",
"@better-scroll/core": "2.5.1",
"@chiko-admin/axios": "workspace:*",
"@chiko-admin/color": "workspace:*",
"@chiko-admin/hooks": "workspace:*",
"@chiko-admin/layout": "workspace:*",
"@chiko-admin/utils": "workspace:*",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/sortable": "10.0.0",
"@iconify/react": "6.0.0",
"@reduxjs/toolkit": "2.8.2",
"ahooks": "3.9.0",
"antd": "5.26.7",
"clipboard": "2.0.11",
"clsx": "2.1.1",
"dayjs": "1.11.13",
"echarts": "5.6.0",
"i18next": "25.3.2",
"keepalive-for-react": "4.0.2",
"lodash-es": "4.17.21",
"motion": "12.23.11",
"nprogress": "0.2.0",
"ofetch": "1.4.1",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-error-boundary": "6.0.0",
"react-i18next": "15.6.1",
"react-redux": "9.2.0",
"react-router-dom": "7.7.1"
},
"devDependencies": {
"@chiko-admin/scripts": "workspace:*",
"@chiko-admin/unocss": "workspace:*",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@eslint/js": "9.32.0",
"@iconify/json": "2.2.363",
"@iconify/types": "2.0.0",
"@types/lodash-es": "4.17.12",
"@types/node": "24.1.0",
"@types/nprogress": "0.2.3",
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7",
"@unocss/eslint-config": "66.3.3",
"@unocss/preset-icons": "66.3.3",
"@unocss/preset-uno": "66.3.3",
"@unocss/transformer-directives": "66.3.3",
"@unocss/transformer-variant-group": "66.3.3",
"@unocss/vite": "66.3.3",
"@vitejs/plugin-react": "4.7.0",
"eslint": "9.32.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.20",
"git-cz": "4.9.0",
"globals": "16.3.0",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"msw": "2.10.4",
"sass": "1.89.2",
"typescript": "5.7.3",
"typescript-eslint": "8.38.0",
"unplugin-auto-import": "19.3.0",
"unplugin-icons": "22.2.0",
"vite": "7.0.6",
"vite-plugin-inspect": "11.3.2",
"vite-plugin-remove-console": "2.2.0",
"vite-plugin-svg-icons": "2.0.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"msw": {
"workerDirectory": [
"public"
]
}
}