boring.tools-poc/package.json
Lars Hampe 46b49abd17
Some checks failed
Build and Push Docker Image / build (push) Failing after 17s
feat: bun workspace setup
2024-09-28 13:33:44 +02:00

21 lines
573 B
JSON

{
"name": "boring.tools",
"scripts": {
"lint:apps": "bunx biome lint --write ./apps",
"lint:packages": "bunx biome lint --write ./packages",
"check:apps": "bunx biome check --write --config-path ./biome.json ./apps",
"check:packages": "bunx biome check --write --config-path ./biome.json ./packages",
"dev": "bun --filter '*' dev",
"build": "bun --filter '*' build"
},
"packageManager": "bun@1.1.29",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "1.8.3",
"lefthook": "^1.7.15"
}
}