mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:21:10 +02:00
Move inactive projects out of active workspace: - bauntown (community website) - maerchenzauber (AI story generation) - memoro (voice memo app) - news (news aggregation) - nutriphi (nutrition tracking) - reader (reading app) - uload (URL shortener) - wisekeep (AI wisdom extraction) Update CLAUDE.md documentation: - Add presi to active projects - Document archived projects section - Update workspace configuration Archived apps can be re-activated by moving back to apps/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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"
|
|
}
|