-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 767 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 767 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
{
"name": "openpc",
"private": true,
"packageManager": "pnpm@10.6.2",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"cf:deploy": "pnpm run build && pnpm --filter @openpc/api deploy:wrangler",
"test": "turbo test",
"typecheck": "turbo typecheck",
"lint": "oxlint apps/ packages/",
"format": "oxfmt apps/ packages/",
"format:check": "oxfmt --check apps/ packages/",
"db:generate": "pnpm --filter @openpc/db generate",
"db:migrate": "pnpm --filter @openpc/db migrate",
"db:migrate:local": "pnpm --filter @openpc/db migrate",
"db:seed": "pnpm --filter @openpc/db seed"
},
"devDependencies": {
"oxfmt": "^0.64.0",
"oxlint": "^1.79.0",
"turbo": "^2.10.11",
"typescript": "~5.8.3"
}
}