add native and expo dependencies

This commit is contained in:
Joseph D'Souza 2026-02-10 16:31:11 +01:00
parent 20b3889b2d
commit 77d319adb2
2 changed files with 747 additions and 273 deletions

1004
mobile/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,8 @@
"start:go": "expo start", "start:go": "expo start",
"android": "expo run:android", "android": "expo run:android",
"ios": "expo run:ios", "ios": "expo run:ios",
"web": "expo start --web" "web": "expo start --web",
"postinstall": "patch-package"
}, },
"dependencies": { "dependencies": {
"@expo/vector-icons": "^15.0.3", "@expo/vector-icons": "^15.0.3",
@ -21,12 +22,20 @@
"expo-apple-authentication": "~8.0.8", "expo-apple-authentication": "~8.0.8",
"expo-auth-session": "~7.0.10", "expo-auth-session": "~7.0.10",
"expo-crypto": "~15.0.8", "expo-crypto": "~15.0.8",
"expo-file-system": "^19.0.21",
"expo-image-manipulator": "^14.0.8",
"expo-image-picker": "^17.0.10",
"expo-print": "^15.0.8",
"expo-sharing": "^14.0.8",
"expo-splash-screen": "~31.0.13", "expo-splash-screen": "~31.0.13",
"expo-status-bar": "~3.0.9", "expo-status-bar": "~3.0.9",
"expo-system-ui": "~6.0.9", "expo-system-ui": "~6.0.9",
"expo-web-browser": "~15.0.10", "expo-web-browser": "~15.0.10",
"react": "19.1.0", "react": "19.1.0",
"react-native": "0.81.5", "react-native": "0.81.5",
"react-native-blob-util": "^0.24.6",
"react-native-document-scanner-plugin": "^2.0.4",
"react-native-pdf": "^7.0.3",
"react-native-safe-area-context": "~5.6.0", "react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0", "react-native-screens": "~4.16.0",
"zustand": "^5.0.11" "zustand": "^5.0.11"
@ -34,7 +43,12 @@
"devDependencies": { "devDependencies": {
"@babel/core": "^7.20.0", "@babel/core": "^7.20.0",
"@types/react": "~19.1.10", "@types/react": "~19.1.10",
"patch-package": "^8.0.1",
"typescript": "^5.3.3" "typescript": "^5.3.3"
}, },
"overrides": {
"glob": "12.0.0",
"rimraf": "4.3.1"
},
"private": true "private": true
} }