mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 23:21:08 +02:00
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)
40 lines
1.6 KiB
JSON
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"
|
|
}
|