533d50dd01
- 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)
12 lines
460 B
JSON
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"
|
|
}
|
|
}
|