b16a30beb2
Adds packageManager field to root package.json (required by turbo v2.9), loads .env via dotenv in API jest config so Prisma integration tests find DATABASE_URL when run from the monorepo root. pnpm build + pnpm test: 8/8 passing. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
400 B
JSON
22 lines
400 B
JSON
{
|
|
"name": "tower",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo build",
|
|
"dev": "turbo dev",
|
|
"test": "turbo test",
|
|
"lint": "turbo lint"
|
|
},
|
|
"devDependencies": {
|
|
"turbo": "^2.0.0",
|
|
"typescript": "^5.7.0",
|
|
"@types/node": "^22.0.0",
|
|
"prettier": "^3.0.0"
|
|
},
|
|
"packageManager": "pnpm@10.6.2",
|
|
"engines": {
|
|
"node": ">=22.0.0",
|
|
"pnpm": ">=10.0.0"
|
|
}
|
|
}
|