Files
Minikura/package.json
T

39 lines
1.2 KiB
JSON
Raw Normal View History

2024-09-21 13:28:02 +07:00
{
2026-02-13 15:52:13 +07:00
"name": "@minikura/repo",
"version": "0.0.1",
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "bun@1.3.6",
"scripts": {
2026-08-13 01:57:43 +07:00
"dev": "turbo dev --parallel --no-cache --output-logs=full",
2026-02-13 15:52:13 +07:00
"web": "bun --bun run --cwd apps/web dev",
"build": "turbo build",
"typecheck": "turbo typecheck",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"check": "bun run typecheck && bun run lint && bun run format",
"db:generate": "bun --filter @minikura/db generate",
"db:studio": "bun --filter @minikura/db studio",
"db:push": "bun --filter @minikura/db push",
"db:reset": "bun --filter @minikura/db reset",
"k8s:dev": "bun --filter @minikura/k8s-operator dev",
"k8s:build": "bun --filter @minikura/k8s-operator build",
"k8s:start": "bun --filter @minikura/k8s-operator start",
"k8s:crd": "bun --filter @minikura/k8s-operator apply-crds",
2026-08-13 01:57:43 +07:00
"setup": "bash scripts/install.sh"
2026-02-13 15:52:13 +07:00
},
"devDependencies": {
2026-08-13 01:57:43 +07:00
"@biomejs/biome": "^2.5.8",
"@sinclair/typebox": "^0.34.52",
"concurrently": "^10.0.4",
"turbo": "^2.10.9"
2026-02-13 15:52:13 +07:00
},
"dependencies": {
"dotenv-mono": "^1.5.1"
}
2024-09-21 13:28:02 +07:00
}