-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 904 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": "stackwarden-monorepo",
"version": "0.0.0",
"private": true,
"packageManager": "bun@1.2.12",
"engines": {
"node": ">=20.11 <23",
"bun": "1.2.12"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"check": "bun run lint && bun run typecheck && bun run test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "bun run --filter stackwarden typecheck",
"test": "bun run --filter stackwarden test && node --test scripts/*.test.mjs",
"release:check": "bun run --filter stackwarden release:check",
"hooks:install": "git config core.hooksPath .githooks",
"delivery:branch": "node scripts/validate-delivery.mjs branch",
"delivery:commit": "node scripts/validate-delivery.mjs commit-msg"
},
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"@types/node": "^22.0.0",
"typescript": "^5"
}
}