Files
headquarter/package.json
T
alex 533d50dd01
CI / Web CI (push) Failing after 9s
CI / API CI (push) Failing after 10s
chore: clean up root configuration files
- Remove redundant .npmrc (ignore-build-scripts=false is default)
- Remove Makefile (scripts available in package.json)
- Simplify root package.json:
  - Remove duplicate pnpm keys
  - Remove frontend-specific esbuild config (already in apps/web/package.json)
  - Remove version/description (not needed for private workspace root)
  - Remove compose scripts (use docker compose directly)
- Clean pnpm-workspace.yaml:
  - Remove placeholder allowBuilds comment
  - Remove onlyBuiltDependencies (handled per-workspace)
2026-05-16 14:14:41 +02:00

12 lines
460 B
JSON

{
"name": "headquarter",
"private": true,
"packageManager": "pnpm@11.1.1",
"scripts": {
"lint": "pnpm --filter @headquarter/web lint && pnpm --filter @headquarter/api lint",
"test": "pnpm --filter @headquarter/web test && pnpm --filter @headquarter/api test",
"build": "pnpm --filter @headquarter/web build && pnpm --filter @headquarter/api build",
"dev": "pnpm --parallel --filter @headquarter/web --filter @headquarter/api dev"
}
}