-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (26 loc) · 755 Bytes
/
package.json
File metadata and controls
27 lines (26 loc) · 755 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
{
"name": "brail",
"version": "0.1.0",
"private": true,
"description": "Brail - Instant Static Deploys Platform",
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"start": "turbo run start --parallel",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"db:migrate": "cd apps/api && pnpm prisma migrate dev",
"db:deploy": "cd apps/api && pnpm prisma migrate deploy",
"db:studio": "cd apps/api && pnpm prisma studio",
"db:generate": "cd apps/api && pnpm prisma generate"
},
"devDependencies": {
"turbo": "^2.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0"
}