2f3c22000c
Restored mobile/ from d22175310a711e7ebdd8062ae29a54f0136dc3f6^ (parent commitd94e9ca4bc). Commitd22175310a(google-labs-jules[bot], 2026-03-23T14:45:22Z) introduced an SSRF security fix for IMAP connections but unintentionally deleted or truncated a large number of files across the repository, including 24 files under mobile/. This commit targets only the mobile/ directory and restores the following files to their pre-d2217531 state: - mobile/README.md - mobile/app.json - mobile/app/(tabs)/_layout.tsx - mobile/app/(tabs)/file-detail.tsx (re-added) - mobile/app/+not-found.tsx (re-added) - mobile/app/_layout.tsx - mobile/eslint.config.js (re-added) - mobile/package-lock.json - mobile/package.json - mobile/src/context/ShareContext.tsx - mobile/src/i18n/de.json (re-added) - mobile/src/i18n/en.json (re-added) - mobile/src/i18n/es.json (re-added) - mobile/src/i18n/fr.json (re-added) - mobile/src/i18n/index.ts (re-added) - mobile/src/i18n/it.json (re-added) - mobile/src/screens/FileDetailScreen.tsx (re-added) - mobile/src/screens/FilesScreen.tsx - mobile/src/screens/LoginScreen.tsx - mobile/src/screens/ProfileScreen.tsx - mobile/src/screens/UploadScreen.tsx - mobile/src/screens/WelcomeScreen.tsx - mobile/src/services/api.ts - mobile/src/utils/mimeTypes.ts (re-added) - mobile/src/utils/normalizeUri.ts (re-added) Security fixes introduced byd2217531that are unrelated to mobile/ (IMAP SSRF fix in app/utils/network.py and app/tasks/imap_tasks.py) are preserved — this restore targets only files under mobile/.
73 lines
2.1 KiB
JSON
73 lines
2.1 KiB
JSON
{
|
|
"name": "docuelevate-mobile",
|
|
"version": "1.0.0",
|
|
"description": "DocuElevate native mobile app (iOS and Android)",
|
|
"main": "expo-router/entry",
|
|
"scripts": {
|
|
"start": "expo start",
|
|
"android": "expo start --android",
|
|
"ios": "expo start --ios",
|
|
"web": "expo start --web",
|
|
"lint": "eslint src",
|
|
"type-check": "tsc --noEmit",
|
|
"build:ios": "eas build --platform ios",
|
|
"build:android": "eas build --platform android",
|
|
"build:all": "eas build --platform all",
|
|
"submit:ios": "eas submit --platform ios",
|
|
"submit:android": "eas submit --platform android"
|
|
},
|
|
"dependencies": {
|
|
"@expo/vector-icons": "^15.0.3",
|
|
"@react-native-async-storage/async-storage": "2.2.0",
|
|
"@react-navigation/bottom-tabs": "^7.4.0",
|
|
"@react-navigation/native": "^7.1.8",
|
|
"@react-navigation/native-stack": "^7.2.0",
|
|
"expo": "~54.0.0",
|
|
"expo-auth-session": "~7.0.10",
|
|
"expo-build-properties": "~1.0.10",
|
|
"expo-dev-client": "~6.0.20",
|
|
"expo-font": "~14.0.0",
|
|
"expo-camera": "~17.0.10",
|
|
"expo-constants": "~18.0.13",
|
|
"expo-crypto": "~15.0.8",
|
|
"expo-device": "~8.0.10",
|
|
"expo-document-picker": "~14.0.8",
|
|
"expo-file-system": "~19.0.21",
|
|
"expo-image-manipulator": "~14.0.8",
|
|
"expo-image-picker": "~17.0.10",
|
|
"expo-linking": "~8.0.11",
|
|
"expo-localization": "~17.0.8",
|
|
"expo-notifications": "~0.32.16",
|
|
"expo-router": "~6.0.23",
|
|
"expo-secure-store": "~15.0.8",
|
|
"expo-sharing": "~14.0.8",
|
|
"expo-splash-screen": "~31.0.13",
|
|
"expo-status-bar": "~3.0.9",
|
|
"expo-web-browser": "~15.0.10",
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0",
|
|
"react-native": "0.81.5",
|
|
"react-native-web": "~0.21.0",
|
|
"react-native-safe-area-context": "5.6.0",
|
|
"react-native-screens": "4.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.24.0",
|
|
"@types/react": "~19.1.0",
|
|
"eslint": "^9.0.0",
|
|
"eslint-config-expo": "~10.0.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.19.4"
|
|
},
|
|
"private": true,
|
|
"expo": {
|
|
"doctor": {
|
|
"reactNativeDirectoryCheck": {
|
|
"exclude": ["@react-navigation/bottom-tabs"]
|
|
}
|
|
}
|
|
}
|
|
}
|