mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +02:00
- Add uload project with apps/web structure
- Reorganize from flat to monorepo structure
- Remove PocketBase binary and local data
- Update to pnpm and @uload/web namespace
- Add picture project to monorepo
- Remove embedded git repository
- Unify all package names to @{project}/{app} schema:
- @maerchenzauber/* (was @storyteller/*)
- @manacore/* (was manacore-*, manacore)
- @manadeck/* (was web, backend, manadeck)
- @memoro/* (was memoro-web, landing, memoro)
- @picture/* (already unified)
- @uload/web
- Add convenient dev scripts for all apps:
- pnpm dev:{project}:web
- pnpm dev:{project}:landing
- pnpm dev:{project}:mobile
- pnpm dev:{project}:backend
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
82 lines
2.8 KiB
JSON
82 lines
2.8 KiB
JSON
{
|
|
"name": "@manadeck/mobile",
|
|
"version": "1.0.0",
|
|
"main": "expo-router/entry",
|
|
"scripts": {
|
|
"start": "expo start --dev-client",
|
|
"start:local": "cp .env.local .env && expo start --dev-client",
|
|
"start:prod": "cp .env.production .env && expo start --dev-client",
|
|
"ios": "expo run:ios",
|
|
"android": "expo run:android",
|
|
"build:dev": "eas build --profile development",
|
|
"build:preview": "eas build --profile preview",
|
|
"build:prod": "eas build --profile production",
|
|
"prebuild": "expo prebuild",
|
|
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" && prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
|
|
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
|
|
"web": "expo start --web"
|
|
},
|
|
"dependencies": {
|
|
"@expo/ui": "~0.2.0-beta.6",
|
|
"@expo/vector-icons": "^15.0.2",
|
|
"@react-native-async-storage/async-storage": "2.2.0",
|
|
"@react-native-community/netinfo": "^11.4.1",
|
|
"@react-native-google-signin/google-signin": "^14.0.2",
|
|
"@react-native-segmented-control/segmented-control": "2.5.7",
|
|
"@react-navigation/native": "^7.0.3",
|
|
"@supabase/supabase-js": "^2.81.1",
|
|
"base64-js": "^1.5.1",
|
|
"class-variance-authority": "^0.7.1",
|
|
"expo": "54.0.13",
|
|
"expo-apple-authentication": "~8.0.7",
|
|
"expo-av": "~16.0.7",
|
|
"expo-blur": "~15.0.7",
|
|
"expo-build-properties": "~1.0.9",
|
|
"expo-constants": "~18.0.9",
|
|
"expo-dev-client": "~6.0.13",
|
|
"expo-device": "~8.0.9",
|
|
"expo-file-system": "~19.0.15",
|
|
"expo-font": "~14.0.9",
|
|
"expo-image-picker": "~17.0.8",
|
|
"expo-linking": "~8.0.8",
|
|
"expo-router": "~6.0.10",
|
|
"expo-secure-store": "^15.0.7",
|
|
"expo-speech": "~14.0.7",
|
|
"expo-status-bar": "~3.0.8",
|
|
"expo-symbols": "~1.0.7",
|
|
"expo-system-ui": "~6.0.7",
|
|
"expo-updates": "~29.0.12",
|
|
"expo-web-browser": "~15.0.8",
|
|
"nativewind": "^4.2.1",
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0",
|
|
"react-native": "0.81.4",
|
|
"react-native-calendars": "^1.1313.0",
|
|
"react-native-draggable-flatlist": "^4.0.3",
|
|
"react-native-gesture-handler": "~2.28.0",
|
|
"react-native-reanimated": "~4.1.1",
|
|
"react-native-safe-area-context": "~5.6.0",
|
|
"react-native-screens": "~4.16.0",
|
|
"react-native-svg": "15.12.1",
|
|
"react-native-web": "^0.21.0",
|
|
"react-native-worklets": "0.5.1",
|
|
"zustand": "^5.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.20.0",
|
|
"@types/react": "^19.2.3",
|
|
"@types/react-dom": "^19.2.3",
|
|
"ajv": "^8.12.0",
|
|
"eslint": "^9.25.1",
|
|
"eslint-config-expo": "~10.0.0",
|
|
"eslint-config-prettier": "^10.1.2",
|
|
"prettier": "^3.2.5",
|
|
"prettier-plugin-tailwindcss": "^0.5.11",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "~5.9.3"
|
|
},
|
|
"overrides": {
|
|
"react-native-safe-area-context": "~5.6.0"
|
|
},
|
|
"private": true
|
|
}
|