Delete packages/ui and packages/utils (zero imports from apps/web), remove Turborepo, inline tsconfig.base.json into web's tsconfig, and simplify root scripts to use pnpm --filter directly. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
800 B
JSON
31 lines
800 B
JSON
{
|
|
"name": "multica",
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev:web": "pnpm --filter @multica/web dev",
|
|
"build": "pnpm --filter @multica/web build",
|
|
"typecheck": "pnpm --filter @multica/web typecheck",
|
|
"test": "pnpm --filter @multica/web test",
|
|
"lint": "pnpm --filter @multica/web lint",
|
|
"clean": "pnpm --filter @multica/web clean && rm -rf node_modules"
|
|
},
|
|
"packageManager": "pnpm@10.28.2",
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"esbuild"
|
|
],
|
|
"overrides": {
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.58.2",
|
|
"@types/node": "catalog:",
|
|
"@types/pg": "^8.20.0",
|
|
"pg": "^8.20.0",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|