-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.42 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.42 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
{
"name": "halolight-react",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "基于 React 19 + Vite 的现代化中文后台管理系统",
"author": "h7ml <h7ml@qq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/halolight/halolight-react"
},
"homepage": "https://halolight-react.h7ml.cn",
"bugs": {
"url": "https://github.com/halolight/halolight-react/issues"
},
"keywords": [
"react",
"react19",
"vite",
"admin",
"admin-dashboard",
"dashboard",
"typescript",
"tailwindcss",
"tailwindcss4",
"shadcn-ui",
"radix-ui",
"zustand",
"react-query",
"framer-motion"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.11",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"framer-motion": "^12.23.24",
"js-cookie": "^3.0.5",
"lucide-react": "^0.554.0",
"mockjs": "^1.1.0",
"next-themes": "^0.4.6",
"react": "^19.0.1",
"react-dom": "^19.0.1",
"react-grid-layout": "^1.5.2",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.66.1",
"react-resizable": "^3.0.5",
"react-router-dom": "^6.28.0",
"recharts": "^3.5.0",
"tailwind-merge": "^3.4.0",
"zod": "^4.1.13",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/postcss": "^4",
"@types/js-cookie": "^3.0.6",
"@types/mockjs": "^1.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-grid-layout": "^1.3.6",
"@types/react-resizable": "^3.0.8",
"@vitejs/plugin-react": "^4.4.0",
"eslint": "^9",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^16.5.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"typescript-eslint": "^8.46.4",
"vite": "^6.0.1"
},
"optionalDependencies": {
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.0.0",
"@vitest/coverage-v8": "^2.1.0",
"@vitest/ui": "^2.1.0",
"jsdom": "^26.0.0",
"vitest": "^2.1.0"
},
"packageManager": "pnpm@10.23.0"
}