managarten/apps/maerchenzauber/package.json
Wuesteon d36b321d9d style: auto-format codebase with Prettier
Applied formatting to 1487+ files using pnpm format:write
  - TypeScript/JavaScript files
  - Svelte components
  - Astro pages
  - JSON configs
  - Markdown docs

  13 files still need manual review (Astro JSX comments)
2025-11-27 18:33:16 +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"
}