morethanadiagnosis-hub/mobile/package.json
Claude 428a8e6526
fix: add missing dependencies and fix TypeScript errors
- Add required web dependencies (react-dom, react-native-web)
- Add navigation dependencies (react-native-safe-area-context, react-native-screens)
- Fix StatusBar prop (barStyle -> style) in root layout
- Fix animation property in auth layout (animationEnabled -> animation)
- Add placeholder assets for app icons and splash screen
- Auto-generated tsconfig.json from Expo
2025-11-18 18:56:34 +00:00

44 lines
1.3 KiB
JSON

{
"name": "morethanadiagnosis-mobile",
"version": "0.1.0",
"description": "MoreThanADiagnosis - Mobile platform (React Native/Expo)",
"main": "expo-router/build/index.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"build": "eas build",
"build:ios": "eas build --platform ios",
"build:android": "eas build --platform android",
"submit": "eas submit",
"lint": "eslint .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@tanstack/react-query": "^5.25.0",
"axios": "^1.6.0",
"expo": "^51.0.0",
"expo-constants": "~15.4.0",
"expo-linking": "~6.0.0",
"expo-router": "^3.4.0",
"expo-splash-screen": "^31.0.11",
"expo-status-bar": "~1.12.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.73.0",
"react-native-safe-area-context": "^5.6.2",
"react-native-screens": "^4.18.0",
"react-native-web": "^0.19.13",
"typescript": "^5.3.0",
"zustand": "^4.4.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0"
}
}