mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 16:39:39 +02:00
Upgraded 6 apps from SDK 52/54 to SDK 55 (matrix was already on 55). All apps now consistently use: - Expo SDK ~55.0.5 - React Native 0.83.2 - React 19.2.0 - expo-router ~55.0.5 - NativeWind ~4.2.3 Before: 3 different SDK versions (52, 54, 55) After: 1 version (55) across all 7 mobile apps Added docs/EXPO_SDK_UPGRADE.md with testing checklist. Note: pnpm install + device testing required to validate the upgrades. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
71 lines
2.2 KiB
JSON
71 lines
2.2 KiB
JSON
{
|
|
"name": "@context/mobile",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"main": "expo-router/entry",
|
|
"scripts": {
|
|
"dev": "expo start --dev-client",
|
|
"start": "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": "prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
|
|
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
|
|
"type-check": "tsc --noEmit",
|
|
"web": "expo start --web"
|
|
},
|
|
"dependencies": {
|
|
"@expo/vector-icons": "^14.0.0",
|
|
"@manacore/shared-auth": "workspace:*",
|
|
"@react-native-async-storage/async-storage": "^1.23.1",
|
|
"@react-native-picker/picker": "^2.11.0",
|
|
"@react-navigation/native": "^7.0.3",
|
|
"expo": "~55.0.5",
|
|
"expo-constants": "~55.0.7",
|
|
"expo-dev-client": "^6.0.13",
|
|
"expo-dev-launcher": "^6.0.13",
|
|
"expo-font": "^14.0.10",
|
|
"expo-linking": "~55.0.7",
|
|
"expo-localization": "^16.1.6",
|
|
"expo-router": "~55.0.5",
|
|
"expo-status-bar": "~55.0.4",
|
|
"expo-system-ui": "~55.0.9",
|
|
"expo-secure-store": "~55.0.8",
|
|
"expo-web-browser": "~55.0.9",
|
|
"i18next": "^25.3.2",
|
|
"nativewind": "~4.2.3",
|
|
"react": "19.2.0",
|
|
"react-dom": "19.2.0",
|
|
"react-i18next": "^15.6.0",
|
|
"react-native": "0.83.2",
|
|
"react-native-gesture-handler": "~2.28.0",
|
|
"react-native-markdown-display": "^7.0.2",
|
|
"react-native-pager-view": "^6.7.0",
|
|
"react-native-purchases": "^8.9.5",
|
|
"react-native-reanimated": "~4.1.5",
|
|
"react-native-safe-area-context": "~5.6.0",
|
|
"react-native-screens": "~4.16.0",
|
|
"react-native-tab-view": "^4.0.10",
|
|
"react-native-web": "~0.21.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.20.0",
|
|
"@types/node": "^24.10.1",
|
|
"@types/react": "~19.1.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
|
"@typescript-eslint/parser": "^7.7.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-universe": "^12.0.1",
|
|
"prettier": "^3.2.5",
|
|
"prettier-plugin-tailwindcss": "^0.5.11",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "~5.3.3"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "universe/native",
|
|
"root": true
|
|
}
|
|
}
|