mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-03-30 12:25:35 +00:00
41 lines
1.3 KiB
JSON
41 lines
1.3 KiB
JSON
{
|
|
"name": "@minikura/repo",
|
|
"version": "0.0.1",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"packageManager": "bun@1.3.6",
|
|
"scripts": {
|
|
"dev": "turbo dev --parallel",
|
|
"dev:logs": "turbo dev --parallel --no-cache --output-logs=full",
|
|
"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",
|
|
"k8s:token": "bash scripts/show-k8s-tokens.sh",
|
|
"k8s:rbac": "bash scripts/setup-rbac.sh",
|
|
"install": "bash scripts/install.sh"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.3.11",
|
|
"concurrently": "^9.2.1",
|
|
"turbo": "^2.7.4"
|
|
},
|
|
"dependencies": {
|
|
"dotenv-mono": "^1.5.1"
|
|
}
|
|
}
|