-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 956 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 956 Bytes
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
{
"name": "virtual-agent",
"private": true,
"scripts": {
"dev": "next dev",
"dev:doppler": "doppler run -- next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:seed": "npx tsx db/seed.ts",
"test": "bun test"
},
"dependencies": {
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.4",
"drizzle-orm": "^0.45.1",
"next": "^15.3.0",
"postgres": "^3.4.7",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.1.0",
"@types/node": "^22.0.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"drizzle-kit": "^0.31.9",
"postcss": "^8.5.0",
"tailwindcss": "^4.1.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}