-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.02 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
{
"name": "turbo-basic-template",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"--- Database Scripts ---": "",
"db:generate": "pnpm --filter @my-app/db db:generate",
"db:migrate": "pnpm --filter @my-app/db db:migrate",
"db:studio": "pnpm --filter @my-app/db db:studio",
"db:push": "pnpm --filter @my-app/db db:push",
"--- API Specific Scripts ---": "",
"api:dev": "pnpm --filter @my-app/api dev",
"api:build": "turbo run api:build --filter=@my-app/api",
"api:start": "pnpm --filter @my-app/api start",
"--- Pos Specific Scripts ---": "",
"pos:dev": "pnpm --filter @my-app/pos dev",
"pos:build": "turbo run build --filter=@my-app/pos"
},
"devDependencies": {
"prettier": "^3.6.0",
"turbo": "^2.5.4",
"typescript": "5.8.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
}
}