-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.73 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
{
"name": "zealous-admin",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@11.8.0",
"engines": {
"node": ">=24.15.0"
},
"scripts": {
"dev": "vite --host",
"build": "vite build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"preview": "vite build && vite preview",
"build:lib": "npm run build:lib:components && npm run build:lib:layout && npm run build:lib:theme && npm run build:lib:utils",
"build:lib:utils": "vite build --config packages/utils/vite.config.ts && tsc -p ./packages/utils/tsconfig.lib.json",
"build:lib:components": "vite build --config packages/components/vite.config.ts && tsc -p ./packages/components/tsconfig.lib.json",
"build:lib:layout": "vite build --config packages/layout/vite.config.ts && tsc -p ./packages/layout/tsconfig.lib.json",
"build:lib:theme": "vite build --config packages/theme/vite.config.ts && tsc -p ./packages/theme/tsconfig.lib.json",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@ant-design/colors": "catalog:",
"@ant-design/happy-work-theme": "catalog:",
"@ant-design/icons": "catalog:",
"@codemirror/lang-javascript": "catalog:",
"@hello-pangea/dnd": "catalog:",
"@icon-park/react": "catalog:",
"@tanem/react-nprogress": "catalog:",
"ahooks": "catalog:",
"animate.css": "catalog:",
"antd": "catalog:",
"antd-style": "catalog:",
"axios": "catalog:",
"classnames": "catalog:",
"create-puzzle": "catalog:",
"echarts": "catalog:",
"rc-slider-captcha": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"react-grid-layout": "catalog:",
"react-icons": "catalog:",
"react-markdown": "catalog:",
"react-router": "catalog:",
"react-router-dom": "catalog:",
"react-spinners": "catalog:",
"react-syntax-highlighter": "catalog:",
"react-transition-group": "catalog:",
"remark-gfm": "catalog:",
"three": "catalog:",
"vite-plugin-svgr": "catalog:",
"zustand": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "^9.1.0",
"@eslint-react/eslint-plugin": "^5.10.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-grid-layout": "^1.3.5",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/three": "catalog:",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^10.6.0",
"eslint-plugin-react-refresh": "^0.5.3",
"postcss": "^8.4.49",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.14",
"typescript": "catalog:",
"vite": "^8.0.0",
"vite-plugin-pages": "^0.33.3",
"vitepress": "^1.6.0"
}
}