-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 KB
/
package.json
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
{
"name": "next-gpt-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx lib/db/migrate.ts",
"db:drop": "drizzle-kit drop",
"db:pull": "drizzle-kit introspect",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:check": "drizzle-kit check"
},
"dependencies": {
"@ai-sdk/google": "^0.0.41",
"@ai-sdk/openai": "^0.0.35",
"@next/env": "^14.2.13",
"@sendgrid/mail": "^8.1.3",
"@vercel/postgres": "^0.10.0",
"ai": "^3.2.17",
"bcrypt": "^5.1.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.33.0",
"drizzle-zod": "^0.5.1",
"next": "14.2.4",
"next-auth": "^5.0.0-beta.22",
"openai": "^4.52.4",
"postgres": "^3.4.4",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^2.5.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"drizzle-kit": "^0.24.2",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"postcss": "^8",
"sass": "^1.77.8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}