28 lines
1.1 KiB
JSON
28 lines
1.1 KiB
JSON
{
|
|
"name": "hexahost-gamecloud",
|
|
"private": true,
|
|
"packageManager": "pnpm@9.15.0",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"scripts": {
|
|
"dev": "node scripts/run-with-env.mjs turbo run dev",
|
|
"dev:bg": "bash scripts/dev-bg.sh",
|
|
"dev:stop": "bash scripts/dev-stop.sh",
|
|
"dev:infra": "docker compose -f deploy/compose/compose.dev.yml --env-file .env up -d postgres redis minio minio-init mailpit",
|
|
"build": "turbo run build",
|
|
"lint": "turbo run lint",
|
|
"typecheck": "turbo run typecheck",
|
|
"test": "turbo run test",
|
|
"db:generate": "pnpm --filter @hexahost/database db:generate",
|
|
"db:migrate": "node scripts/run-with-env.mjs pnpm --filter @hexahost/database db:migrate",
|
|
"db:push": "node scripts/run-with-env.mjs pnpm --filter @hexahost/database db:push",
|
|
"bootstrap:admin": "pnpm --filter @hexahost/auth build && node scripts/run-with-env.mjs pnpm --filter @hexahost/database bootstrap:admin",
|
|
"db:seed": "node scripts/run-with-env.mjs pnpm --filter @hexahost/database db:seed"
|
|
},
|
|
"devDependencies": {
|
|
"turbo": "^2.3.3",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|