-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "multi-agent",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:seed": "prisma db seed",
"postinstall": "prisma generate"
},
"dependencies": {
"@ai-sdk/google": "^3.0.24",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"ai": "^6.0.79",
"hono": "^4.11.9",
"next": "16.1.6",
"pg": "^8.18.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^16.6.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"prisma": "^7.3.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}