Files
TehRiehlBudget/package.json
T
TehRiehlDeal cf7e8a5d3f
CI / secrets-scan (push) Successful in 6s
CI / sast (push) Successful in 14s
CI / vuln-scan (push) Successful in 16s
CI / lint (push) Failing after 27s
CI / test (push) Failing after 28s
CI / build-images (push) Has been skipped
CI / image-scan (push) Has been skipped
CI / push (push) Has been skipped
Move pnpm onlyBuiltDependencies into pnpm-workspace.yaml
pnpm 10.x no longer reads the "pnpm" key in package.json and now hard-fails
the install with ERR_PNPM_IGNORED_BUILDS when build scripts are ignored.
Migrate the existing allowlist to pnpm-workspace.yaml and add msw (pulled
in transitively by vitest 4.x).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-27 14:28:07 -07:00

23 lines
1.1 KiB
JSON

{
"name": "tehriehlbudget",
"version": "0.0.1",
"private": true,
"description": "Self-hosted personal finance application",
"scripts": {
"dev:frontend": "pnpm --filter tehriehlbudget-frontend dev",
"dev:backend": "pnpm --filter tehriehlbudget-backend start:dev",
"build:frontend": "pnpm --filter tehriehlbudget-frontend build",
"build:backend": "pnpm --filter tehriehlbudget-backend build",
"test": "pnpm --filter tehriehlbudget-backend test && pnpm --filter tehriehlbudget-frontend test",
"test:backend": "pnpm --filter tehriehlbudget-backend test",
"test:frontend": "pnpm --filter tehriehlbudget-frontend test",
"test:coverage": "pnpm --filter tehriehlbudget-backend test:cov && pnpm --filter tehriehlbudget-frontend test:coverage",
"lint": "pnpm --filter tehriehlbudget-backend lint && pnpm --filter tehriehlbudget-frontend lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\""
},
"devDependencies": {
"prettier": "3.8.2"
}
}