-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.56 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.56 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": "modelforge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:standalone": "next build && node -e \"console.log('Standalone build ready')\"",
"start": "next start",
"lint": "eslint .",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"test:user": "node scripts/create-test-user.js",
"test:vision": "tsx scripts/test-vision.ts",
"test:memory": "tsx scripts/test-memory.ts",
"test:rag": "tsx scripts/test-rag.ts",
"assets:init": "tsx scripts/maintenance/init-local-asset-library.ts",
"assets:catalog": "tsx scripts/maintenance/build-local-asset-catalog.ts",
"assets:promote": "tsx scripts/maintenance/promote-local-asset-batch.ts",
"analyze:orchestration": "node scripts/analyze-orchestration.mjs",
"ingest:blender": "tsx scripts/ingest-blender-docs.ts",
"mock:neural": "tsx scripts/mock-neural-server.ts",
"debug:traces": "tsx scripts/debug-langsmith.ts"
},
"dependencies": {
"@fal-ai/client": "^1.9.4",
"@google/generative-ai": "^0.24.1",
"@google/model-viewer": "^4.2.0",
"@gradio/client": "^2.1.0",
"@langchain/anthropic": "^1.3.0",
"@langchain/core": "^1.1.0",
"@langchain/google-genai": "^2.1.0",
"@langchain/langgraph": "^1.2.0",
"@prisma/client": "^5.20.0",
"@radix-ui/react-slot": "^1.2.4",
"@react-three/drei": "^10.0.0",
"@react-three/fiber": "^9.0.4",
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.98.0",
"@types/three": "^0.182.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"fflate": "^0.8.2",
"framer-motion": "^12.35.0",
"langchain": "^1.2.0",
"langsmith": "^0.5.0",
"lucide-react": "^0.453.0",
"next": "^16.0.10",
"openai": "^4.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"replicate": "^1.4.0",
"stripe": "^17.3.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"three": "^0.182.0",
"together-ai": "^0.9.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.0",
"baseline-browser-mapping": "^2.10.0",
"eslint": "^8.57.0",
"eslint-config-next": "^16.0.10",
"postcss": "^8.4.0",
"prisma": "^5.20.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.21.0",
"typescript": "^5.6.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}