Files
botfights/package.json
T
DorianandClaude Fable 5 6f7897b124
CI / check (push) Failing after 6m15s
feat(09-05): build + push botfights:1.2.0 to the vps2 registry
- Fixed a pre-existing pnpm overrides config drift (package.json's dead
  pnpm.overrides key vs pnpm-workspace.yaml's overrides, never fully
  migrated after commit bcb323e) that was blocking the docker build's
  `pnpm install --frozen-lockfile` step under a current pnpm version.
  Zero dependency specifier changes in the regenerated lockfile.
- Built and pushed 146.59.87.168:3000/lfg2025/botfights:1.2.0 from
  botfight main @ 2a343ac (arena-proxy + nostr-only auth + unified
  prompt, all three wave-1 plans confirmed present before build).
- Documented the build/push recipe, the gotcha, and the smoke test in
  docs/arena-deployment.md.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-30 23:01:03 -04:00

28 lines
973 B
JSON

{
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -n fe,be -c cyan,green \"pnpm --filter frontend dev\" \"pnpm --filter server dev\"",
"dev:fe": "pnpm --filter frontend dev",
"dev:be": "pnpm --filter server dev",
"build": "pnpm --filter frontend build && pnpm --filter server build",
"test": "vitest",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit -p frontend/tsconfig.json && tsc --noEmit -p server/tsconfig.json",
"clean": "rm -rf frontend/dist server/dist",
"seed": "pnpm --filter server seed",
"test:e2e": "playwright test --config e2e/playwright.config.ts"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vitest/coverage-v8": "^3.1.1",
"concurrently": "9.1.2",
"eslint": "10.0.3",
"eslint-plugin-security": "4.0.0",
"typescript": "5.7.3",
"vitest": "3.1.1"
}
}