morethanadiagnosis-hub/mobile/package.json
Claude eb04163b3b
feat: implement authentication system for mobile app
- Add API integration layer with axios and token management
- Create Zustand auth store for state management
- Implement login screen with validation
- Implement signup screen with password strength indicator
- Implement forgot password flow with multi-step UI
- Update root layout with auth state protection
- Integrate profile screen with auth store
- Install AsyncStorage and expo-secure-store dependencies
2025-11-18 19:32:16 +00:00

46 lines
1.4 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": {
"@react-native-async-storage/async-storage": "^2.2.0",
"@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-secure-store": "^15.0.7",
"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"
}
}