This repository has been archived on 2026-05-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
app/package.json
T
Groom Book CTO aa3b080c05 fix: exclude e2e workspace from root pnpm test command
The root `pnpm test` runs across all workspaces. The apps/e2e workspace
requires Playwright browsers to be installed before tests can run, but
the unit-test CI job does not install them. Exclude @groombook/e2e from
the root test command so E2E tests only run in the dedicated e2e CI job.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-03-18 02:44:04 +00:00

21 lines
564 B
JSON

{
"name": "groombook",
"private": true,
"version": "0.0.1",
"description": "Open source, self-hostable pet grooming business management platform",
"scripts": {
"dev": "pnpm --parallel -r dev",
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r --filter='!@groombook/e2e' test",
"db:migrate": "pnpm --filter @groombook/db migrate",
"db:seed": "pnpm --filter @groombook/db seed"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.15.4"
}