-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 928 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 928 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
30
31
{
"name": "api-boilerplate",
"version": "2.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "pnpm -r build",
"dev:node": "pnpm --filter @repo/api-node dev",
"dev:worker": "pnpm --filter @repo/api-worker dev",
"lint": "biome check .",
"format": "biome format --write .",
"openapi:generate": "node --import tsx scripts/generate-openapi.ts",
"openapi:check": "node --import tsx scripts/check-openapi.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit --project tsconfig.json",
"verify": "pnpm lint && pnpm typecheck && pnpm test && pnpm build && pnpm openapi:check"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@types/node": "^24.6.1",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}