97a7a1b4c3
Build and Push Docker Image / build (push) Successful in 1m8s
pnpm 10 no longer reads the "pnpm" field in package.json and treats ignored build scripts as a hard error (ERR_PNPM_IGNORED_BUILDS), which broke `pnpm install --frozen-lockfile` in the Docker build. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
14 lines
349 B
JSON
14 lines
349 B
JSON
{
|
|
"name": "family-planner",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"dev": "concurrently \"pnpm --filter server dev\" \"pnpm --filter client dev\"",
|
|
"build": "pnpm --filter server build && pnpm --filter client build",
|
|
"start": "pnpm --filter server start"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2"
|
|
}
|
|
}
|