All checks were successful
Build and Push Docker Image to Gitea / build-and-push (push) Successful in 5m19s
- Run pnpm install to update lockfile with packages/backend dependencies - Add argon2 to root onlyBuiltDependencies (pnpm-workspace.yaml + package.json) - Add explicit `pnpm rebuild argon2` in Dockerfile.backend to ensure native bindings compile regardless of pnpm v10 build approval state - Remove pnpm.onlyBuiltDependencies from packages/backend/package.json (ineffective in workspace packages, warned by pnpm) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
35 lines
919 B
JSON
35 lines
919 B
JSON
{
|
|
"name": "sexy.pivoine.art",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build:frontend": "git pull && pnpm install && pnpm --filter @sexy.pivoine.art/frontend build",
|
|
"build:backend": "git pull && pnpm install && pnpm --filter @sexy.pivoine.art/backend build",
|
|
"dev:data": "docker compose up -d postgres redis",
|
|
"dev:backend": "pnpm --filter @sexy.pivoine.art/backend dev",
|
|
"dev": "pnpm dev:data && pnpm dev:backend & pnpm --filter @sexy.pivoine.art/frontend dev"
|
|
},
|
|
"keywords": [],
|
|
"author": {
|
|
"name": "Valknar",
|
|
"email": "valknar@pivoine.art"
|
|
},
|
|
"license": "MIT",
|
|
"packageManager": "pnpm@10.19.0",
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"argon2",
|
|
"es5-ext",
|
|
"esbuild",
|
|
"svelte-preprocess",
|
|
"wasm-pack"
|
|
],
|
|
"ignoredBuiltDependencies": [
|
|
"@tailwindcss/oxide",
|
|
"node-sass"
|
|
]
|
|
}
|
|
}
|