-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 766 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 766 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
{
"name": "smart-commerce-agent",
"private": true,
"packageManager": "pnpm@9.15.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"test": "turbo test",
"build": "turbo build",
"db:migrate": "pnpm --filter @smart-commerce/web prisma migrate dev",
"db:generate": "pnpm --filter @smart-commerce/web prisma generate",
"db:seed": "pnpm --filter @smart-commerce/web prisma db seed",
"postinstall": "prisma generate"
},
"devDependencies": {
"prisma": "6.7.0",
"turbo": "^2.3.0",
"yaml": "^2.8.2"
},
"dependencies": {
"@auth/core": "^0.34.3",
"@langchain/ollama": "^1.2.6",
"@prisma/client": "6.7.0",
"@supabase/ssr": "^0.9.0",
"next-auth": "^4.24.13"
}
}