-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.14 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.14 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
{
"name": "ai-command-center",
"description": "Local AI workstation dashboard. GPU monitoring, training job tracking, ComfyUI/SwarmUI service control, community hub.",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"dependencies": {
"@radix-ui/react-scroll-area": "1.2.3",
"@radix-ui/react-slot": "1.1.2",
"@tauri-apps/api": "^2.10.1",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "3.6.0",
"lucide-react": "0.487.0",
"motion": "12.23.24",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router": "7.13.0",
"recharts": "2.15.2",
"sonner": "2.0.3",
"tailwind-merge": "3.2.0",
"tw-animate-css": "1.3.8"
},
"devDependencies": {
"@eslint/js": "9.28.0",
"@tailwindcss/vite": "4.1.12",
"@tauri-apps/cli": "^2.10.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@types/node": "22.16.4",
"@types/react": "18.3.23",
"@types/react-dom": "18.3.7",
"@vitejs/plugin-react": "4.7.0",
"eslint": "9.28.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.20",
"jsdom": "26.1.0",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "0.6.12",
"tailwindcss": "4.1.12",
"typescript": "5.8.3",
"typescript-eslint": "8.35.1",
"vite": "6.3.5",
"vitest": "3.2.3"
},
"peerDependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"pnpm": {
"overrides": {
"vite": "6.3.5"
},
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild"
]
}
}