-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.22 KB
/
package.json
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
33
34
35
36
37
{
"name": "@turbobun/monorepo",
"private": true,
"description": "Example of Turborepo setup with Bun, Biome/OXC and commitizen stuff.",
"packageManager": "[email protected]",
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"dev": "bun --filter '*' dev",
"commit": "git cz",
"build": "concurrently --kill-others -n 'backend,web' -c '#00ccff,#ffcc00' 'bun run --filter ./apps/backend start' 'turbo build'",
"clean": "git clean -xdf .turbo node_modules",
"check": "bun format-and-lint && bun check:case && bun check:knip",
"check:case": "bunx --bun case-police",
"check:knip": "bunx --bun knip",
"check:updates": "bunx npm-check-updates -ui -ws",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"typecheck": "bun run --filter '*' typecheck"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git",
"useEmoji": true
}
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@changesets/changelog-github": "0.5.0",
"@commitlint/config-conventional": "19.5.0",
"@types/bun": "1.1.10",
"commitizen": "4.3.1",
"concurrently": "9.0.1",
"cz-git": "1.10.0",
"lefthook": "1.7.18",
"typescript": "5.6.2"
}
}