managarten/maerchenzauber/package.json
Till-JS f3b428e5e7 feat: align dependencies across all projects
Dependency updates:
- Manacore mobile: Expo SDK 52 → 54, expo-router 4.x → 6.x
- Supabase: Aligned to ^2.81.1 across all projects
- TypeScript: Aligned to ~5.9.3 across all projects
- React/React Native: Updated to 19.1.0/0.81.5 in Manacore

Fixes:
- Added @types/node to shared-utils for timer types
- Updated shared package tsconfig for DOM/Node types

All shared packages now pass type-check.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-22 23:53:07 +01:00

40 lines
1.6 KiB
JSON

{
"name": "storyteller-monorepo",
"version": "1.0.0",
"private": true,
"description": "Storyteller project containing frontend and backend",
"scripts": {
"dev": "turbo run dev",
"dev:ios": "concurrently \"npm run backend:dev\" \"cd apps/mobile && npx react-native run-ios\"",
"dev:ios:metro": "concurrently \"npm run backend:dev\" \"cd apps/mobile && npx react-native start\" \"sleep 10 && cd apps/mobile && npx react-native run-ios --no-packager\"",
"dev:ios:xcode": "npm run backend:dev & open apps/mobile/ios/MrchenZauber.xcworkspace",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"backend:dev": "npm run dev --workspace=@storyteller/backend",
"mobile:dev": "npm run dev --workspace=@storyteller/mobile",
"mobile:ios": "npm run ios --workspace=@storyteller/mobile",
"landing:dev": "npm run dev --workspace=@storyteller/landing",
"web:dev": "npm run dev --workspace=@storyteller/web",
"backend:build": "npm run build --workspace=@storyteller/backend",
"mobile:build": "npm run build --workspace=@storyteller/mobile",
"landing:build": "npm run build --workspace=@storyteller/landing",
"web:build": "npm run build --workspace=@storyteller/web",
"prepare": "husky"
},
"devDependencies": {
"concurrently": "^9.2.0",
"husky": "^9.1.7",
"prettier": "^2.8.8",
"turbo": "^1.13.4",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.0"
}