managarten/maerchenzauber/package.json
Till-JS e7f5f942f3 chore: initial commit - consolidate 4 projects into monorepo
Projects included:
- maerchenzauber (NestJS backend + Expo mobile + SvelteKit web + Astro landing)
- manacore (Expo mobile + SvelteKit web + Astro landing)
- manadeck (NestJS backend + Expo mobile + SvelteKit web)
- memoro (Expo mobile + SvelteKit web + Astro landing)

This commit preserves the current state before monorepo restructuring.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-22 23:38:24 +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.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.0"
}