-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.44 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.44 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
{
"name": "generative-deep-neural-dungeon",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--no-warnings=punycode' next dev",
"build": "next build",
"start": "next start",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"test:r2": "tsx scripts/test-r2-upload.ts",
"test:vea": "tsx scripts/test-vea.ts",
"test:vea:quick": "tsx scripts/test-vea.ts --quick",
"test:vea:images": "VEA_GENERATE_IMAGES=true tsx scripts/test-vea.ts --generate-images",
"test:vea:quick:images": "VEA_GENERATE_IMAGES=true tsx scripts/test-vea.ts --quick --generate-images"
},
"dependencies": {
"@ai-sdk/react": "^3.0.1",
"@aws-sdk/client-s3": "^3.957.0",
"@aws-sdk/s3-request-presigner": "^3.957.0",
"@clerk/nextjs": "^6.36.5",
"@neondatabase/serverless": "^1.0.2",
"@openrouter/ai-sdk-provider": "^1.5.4",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@vercel/analytics": "^1.6.1",
"ai": "^6.0.1",
"animejs": "4.2.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cytoscape": "^3.33.1",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.562.0",
"next": "^16.1.1",
"next-themes": "^0.4.6",
"postgres": "^3.4.7",
"react": "latest",
"react-dom": "latest",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"replicate": "^1.4.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"zod": "^4.2.1",
"zustand": "^5.0.9"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^24.10.4",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/three": "^0.182.0",
"autoprefixer": "^10.4.23",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.8",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}