mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 18:59:40 +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
23 lines
699 B
JSON
23 lines
699 B
JSON
{
|
|
"name": "zitare",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Zitare App - Daily Inspiration",
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"dev:backend": "pnpm --filter @zitare/backend dev",
|
|
"dev:web": "pnpm --filter @zitare/web dev",
|
|
"dev:landing": "pnpm --filter @zitare/landing dev",
|
|
"dev:mobile": "pnpm --filter @zitare/mobile dev",
|
|
"build": "turbo run build",
|
|
"lint": "turbo run lint",
|
|
"clean": "turbo run clean",
|
|
"db:push": "pnpm --filter @zitare/backend db:push",
|
|
"db:studio": "pnpm --filter @zitare/backend db:studio",
|
|
"db:seed": "pnpm --filter @zitare/backend db:seed"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"packageManager": "pnpm@9.15.0"
|
|
}
|