-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"name": "app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"vercel-build": "prisma generate && npm run db:reset && next build",
"start": "next start",
"lint": "eslint",
"db:push": "npx prisma db push",
"db:reset": "tsx scripts/reset-db.ts && prisma db push && tsx scripts/add-vector-column.ts && tsx scripts/seed-llm-config.ts",
"db:seed": "node scripts/seed-promotions-kb.js",
"db:reseed": "npm run db:reset && npm run db:seed",
"db:studio": "npx prisma studio"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.106.2",
"dotenv": "^17.4.2",
"next": "^16.2.7",
"openai": "^6.41.0",
"pg": "^8.21.0",
"prisma": "^7.8.0",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^24.12.4",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"eslint": "^10.4.1",
"eslint-config-next": "^16.2.7",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
}
}