boring.tools-poc/package.json
Lars Hampe 8f53f4c675
Some checks failed
Build and Push Docker Image / tests (push) Failing after 42s
Build and Push Docker Image / build (push) Has been skipped
ci: add testing
2024-10-01 13:46:51 +02:00

34 lines
1.6 KiB
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",
"db:generate": "bun --filter '@boring.tools/database' db:generate",
"db:migrate": "bun --filter '@boring.tools/database' db:migrate",
"db:push": "bun --filter '@boring.tools/database' db:push",
"test:api": "bun --filter '@boring.tools/api' test",
"docker:website:build": "docker build -t git.hashdot.co/boring.tools/boring.tools/website -f ci/docker/website/Dockerfile .",
"docker:website:push": "docker push git.hashdot.co/boring.tools/boring.tools/website",
"docker:website": "bun docker:website:build && bun docker:website:push",
"docker:api:build": "docker build -t git.hashdot.co/boring.tools/boring.tools/api -f ci/docker/api/Dockerfile .",
"docker:api:push": "docker push git.hashdot.co/boring.tools/boring.tools/api",
"docker:api": "bun docker:api:build && bun docker:api:push",
"docker:app:build": "docker build -t git.hashdot.co/boring.tools/boring.tools/app -f ci/docker/app/Dockerfile .",
"docker:app:push": "docker push git.hashdot.co/boring.tools/boring.tools/app",
"docker:app": "bun docker:app:build && bun docker:app:push"
},
"packageManager": "bun@1.1.29",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "1.8.3",
"lefthook": "^1.7.15"
}
}