mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +02:00
- Remove recursive `turbo run type-check` from parent packages (chat, zitare, voxel-lava) - Increase turbo concurrency from 2 to 5 - Add documentation for turbo anti-pattern in CLAUDE.md - Skip type-check temporarily for apps with pending migrations - Update picture mobile stores to use camelCase API response properties - Add shared-nestjs-auth dependency to chat and picture backends - Clean up unused design-token files from picture package - Update shared-landing-ui components and feedback service config
17 lines
472 B
JSON
17 lines
472 B
JSON
{
|
|
"name": "presi",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "pnpm --filter '@presi/*' run dev",
|
|
"build": "pnpm --filter '@presi/*' run build",
|
|
"lint": "pnpm --filter '@presi/*' run lint",
|
|
"type-check": "pnpm --filter '@presi/*' run type-check",
|
|
"db:push": "pnpm --filter @presi/backend db:push",
|
|
"db:studio": "pnpm --filter @presi/backend db:studio"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"packageManager": "pnpm@9.15.0"
|
|
}
|