-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "starbase",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"postinstall": "prisma generate"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.29",
"@ai-sdk/openai": "^2.0.52",
"@anthropic-ai/sdk": "^0.67.0",
"@auth/prisma-adapter": "^2.11.0",
"@modelcontextprotocol/sdk": "^1.20.0",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@remixicon/react": "^4.7.0",
"@sentry/node": "^10.19.0",
"ai": "^5.0.71",
"fuse.js": "^7.1.0",
"next": "^14.2.0",
"next-auth": "^5.0.0-beta.29",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"resend": "^6.1.3",
"styled-components": "^6.1.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"typescript": "^5",
"eslint": "^8",
"eslint-config-next": "14.2.0",
"prisma": "^5.19.0",
"@prisma/client": "^5.19.0"
}
}