-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·80 lines (80 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·80 lines (80 loc) · 2.52 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
{
"name": "unity-buildlayout-viewer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack -p 3435",
"build": "npx tsx build.js",
"start": "next start -p 3435",
"seed": "tsx prisma/seed.ts",
"test": "set -a && . ./.env.test && set +a && vitest run",
"prisma:deploy": "npx prisma migrate deploy",
"prisma:generate": "npx prisma generate",
"prisma:migration": "npx prisma migrate dev --name",
"prisma:seed": "npx tsx prisma/seed.ts"
},
"dependencies": {
"@dagrejs/dagre": "^1.1.5",
"@emotion/styled": "^11.14.1",
"@fortawesome/fontawesome-free": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@fortawesome/react-fontawesome": "^0.2.3",
"@mui/x-tree-view": "^8.9.0",
"@prisma/client": "^6.5.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-context-menu": "^2.2.15",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@tanstack/react-virtual": "^3.13.12",
"@xyflow/react": "^12.8.2",
"busboy": "^1.6.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"elkjs": "^0.10.0",
"hono": "^4.0.0",
"lucide-react": "^0.525.0",
"next": "^15.5.15",
"radix-ui": "^1.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"react-select": "^5.10.2",
"tailwind-merge": "^3.3.1",
"uuid": "^11.1.0",
"web-worker": "^1.5.0",
"zustand": "^5.0.6"
},
"optionalDependencies": {
"@tailwindcss/oxide-darwin-arm64": "^4.0.14",
"@tailwindcss/oxide-darwin-x64": "^4.0.14",
"@tailwindcss/oxide-linux-x64-gnu": "^4.0.14",
"@tailwindcss/oxide-win32-x64-msvc": "^4.0.14",
"lightningcss-darwin-arm64": "^1.29.2",
"lightningcss-darwin-x64": "^1.29.2",
"lightningcss-linux-x64-gnu": "^1.29.2",
"lightningcss-win32-x64-msvc": "^1.29.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/busboy": "^1.5.4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/stream-json": "^1.7.8",
"prisma": "^6.5.0",
"server-only": "^0.0.1",
"stream-json": "^1.9.1",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"tw-animate-css": "^1.3.5",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.18"
}
}