All checks were successful
Build and Push Docker Image / build (push) Successful in 1m56s
30 lines
1.4 KiB
JSON
30 lines
1.4 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",
|
|
"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"
|
|
}
|
|
}
|