-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "ingra",
"private": true,
"scripts": {
"build": "NODE_ENV=production turbo run build",
"start": "turbo run start",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"db:migrate:dev": "turbo run db:migrate:dev",
"db:migrate:deploy": "turbo run db:migrate:deploy",
"db:push": "turbo run db:push",
"db:seed": "turbo run db:seed",
"db:generate": "turbo run db:generate",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:staged": "git diff --name-only --cached --relative | grep -E '\\.(ts|tsx|md)$' | xargs prettier --write"
},
"packageManager": "pnpm@8.15.6",
"engines": {
"node": ">=18.19.0"
},
"dependencies": {
"@pinecone-database/pinecone": "^4.0.0",
"@prisma/client": "^6.0.0",
"@vercel/blob": "^0.26.0",
"@vercel/kv": "^3.0.0"
},
"devDependencies": {
"consola": "^3.2.3",
"prettier": "^3.4.1",
"prisma": "^6.0.0",
"tsup": "^8.3.5",
"turbo": "^2.3.3"
},
"pnpm": {
"overrides": {
"next": "15.0.3",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106"
}
}
}