managarten/apps/memoro/apps/mobile/package.json
Till JS d8a2b37126 chore(memoro): import legacy backend, mobile, and landing apps
Adds the original NestJS backends (backend, audio-backend), Expo mobile app,
and Astro landing page as-is from the standalone memoro repo. These are
not yet migrated to monorepo standards (migration tracked in memory/CLAUDE.md).

Also adds eslint.config.mjs ignore for apps/*/apps/audio-backend/**
and .prettierignore entries for legacy memoro dirs.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-31 17:30:00 +02:00

116 lines
4.2 KiB
JSON

{
"name": "@memoro/mobile",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"rebuild": "rm -rf node_modules ios/ android/ package-lock.json && npm install && npx expo prebuild",
"android": "expo run:android",
"ios": "expo run:ios",
"start": "expo start",
"start:dev": "cp .env.dev .env.local 2>/dev/null || true && expo start --clear",
"start:prod": "cp .env.prod .env.local 2>/dev/null || true && expo start --clear",
"web:dev": "cp .env.dev .env.local 2>/dev/null || true && expo start --web --clear",
"web:prod": "cp .env.prod .env.local 2>/dev/null || true && expo start --web --clear",
"prebuild": "expo prebuild",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" && prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
"lint:fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix",
"lint:unused": "eslint \"**/*.{js,jsx,ts,tsx}\" --rule 'unused-imports/no-unused-imports: error' --rule '@typescript-eslint/no-unused-vars: error'",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"web": "expo start --web",
"web:build": "expo export --platform web --output-dir web-build",
"ios:device": "expo run:ios --device",
"android:device": "expo run:android --device",
"eas-build-pre-install": "./eas-build-pre-install.sh",
"postinstall": "patch-package"
},
"dependencies": {
"@expo/metro-runtime": "~55.0.6",
"@expo/react-native-action-sheet": "^4.1.1",
"@expo/vector-icons": "^15.0.2",
"@notifee/react-native": "^9.1.8",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/datetimepicker": "8.6.0",
"@react-native-community/netinfo": "^11.4.1",
"@react-native-google-signin/google-signin": "^14.0.1",
"@react-native-segmented-control/segmented-control": "2.5.7",
"@react-navigation/native": "^7.1.6",
"@revenuecat/purchases-js": "^1.13.2",
"@shopify/flash-list": "2.0.2",
"@supabase/supabase-js": "^2.49.4",
"@svgr/plugin-svgo": "^8.1.0",
"base64-js": "^1.5.1",
"date-fns": "^4.1.0",
"expo": "^55.0.0",
"expo-apple-authentication": "~55.0.8",
"expo-asset": "~55.0.8",
"expo-audio": "~55.0.8",
"expo-build-properties": "~55.0.9",
"expo-clipboard": "~55.0.8",
"expo-constants": "~55.0.7",
"expo-dev-client": "~55.0.11",
"expo-device": "~55.0.9",
"expo-document-picker": "~55.0.8",
"expo-file-system": "~55.0.10",
"expo-font": "~55.0.4",
"expo-haptics": "~55.0.8",
"expo-image-picker": "~55.0.11",
"expo-keep-awake": "~55.0.4",
"expo-linear-gradient": "~55.0.8",
"expo-linking": "~55.0.7",
"expo-localization": "~55.0.8",
"expo-location": "~55.1.2",
"expo-router": "~55.0.4",
"expo-secure-store": "~55.0.8",
"expo-share-intent": "^6.0.0",
"expo-splash-screen": "~55.0.10",
"expo-status-bar": "~55.0.4",
"expo-store-review": "~55.0.8",
"expo-symbols": "~55.0.5",
"expo-system-ui": "~55.0.9",
"i18next": "^25.1.3",
"idb": "^8.0.2",
"lottie-react-native": "~7.3.4",
"nativewind": "^4.1.23",
"phosphor-react-native": "^3.0.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-i18next": "^15.5.1",
"react-native": "0.83.2",
"react-native-draggable-flatlist": "^4.0.3",
"react-native-gesture-handler": "~2.30.0",
"react-native-markdown-display": "^7.0.2",
"react-native-mime-types": "^2.5.0",
"react-native-purchases": "^8.11.2",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-url-polyfill": "^2.0.0",
"react-native-web": "^0.21.0",
"react-native-worklets": "0.7.2",
"react-native-zoom-toolkit": "^5.0.0",
"zustand": "^5.0.4"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@types/react": "~19.2.10",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-config-universe": "^15.0.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unused-imports": "^4.2.0",
"patch-package": "^8.0.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react-native-svg-transformer": "^1.5.1",
"tailwindcss": "^3.4.17",
"typescript": "~5.9.2"
},
"eslintConfig": {
"extends": "universe/native",
"root": true
},
"private": true
}