-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
{
"name": "ghost-arc",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"postinstall": "npm run prisma:generate",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:deploy": "prisma migrate deploy",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@ai-sdk/google": "^3.0.63",
"@ai-sdk/openai": "^3.0.53",
"@clerk/nextjs": "^7.2.0",
"@liveblocks/client": "^3.18.1",
"@liveblocks/node": "^3.18.1",
"@liveblocks/react": "^3.18.1",
"@liveblocks/react-flow": "^3.18.1",
"@liveblocks/react-ui": "^3.18.1",
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "^7.7.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-tabs": "^1.1.13",
"@trigger.dev/react-hooks": "^4.4.4",
"@trigger.dev/sdk": "^4.4.4",
"@xyflow/react": "^12.10.2",
"ai": "^6.0.161",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"lucide-react": "^1.8.0",
"nanoid": "^5.1.7",
"next": "16.2.3",
"pg": "^8.20.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.3",
"prisma": "^7.7.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}