-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 852 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 852 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
{
"name": "proof-of-learn",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@9.12.0",
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"db:generate": "pnpm --filter @pol/api prisma generate",
"db:migrate": "pnpm --filter @pol/api prisma migrate dev",
"db:push": "pnpm --filter @pol/api prisma db push",
"db:studio": "pnpm --filter @pol/api prisma studio",
"db:seed": "pnpm --filter @pol/api db:seed",
"infra:up": "docker-compose up -d",
"infra:down": "docker-compose down",
"infra:logs": "docker-compose logs -f"
},
"devDependencies": {
"turbo": "^2.3.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}