-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.59 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "prayTogether-app-client",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"clear": "npx expo start --clear",
"android": "rm -rf ./android && expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"mock": "node ../mock-server-api/mocks/server.js",
"build-android-production": "rm -rf android && eas build --platform android --profile production --local --clear-cache",
"build-android-preview": "rm -rf android && eas build --platform android --profile preview --local --clear-cache",
"build-android-dev": "rm -rf android && eas build --platform android --profile development --local --clear-cache",
"build-ios-preview": "rm -rf ios && eas build --platform ios --profile preview --local --clear-cache",
"build-ios-preview-cloud-submit": "rm -rf ios &&eas build --platform ios --profile preview --auto-submit --clear-cache",
"build-ios-production-local": "rm -rf ios && eas build --platform ios --profile production --local --clear-cache",
"build-ios-production-cloud-submit": "rm -rf ios && eas build --platform ios --profile production --auto-submit --clear-cache",
"build-ios-dev-submit": "rm -rf ios && eas build --platform ios --profile development --local --clear-cache && eas submit --platform ios --profile development",
"build-ios-dev-cloud-submit": "rm -rf ios && eas build --platform ios --profile development --auto-submit --clear-cache",
"update-preview": "eas update --branch preview --message",
"update-production": "eas update --branch production --message",
"update-development": "eas update --branch development --message"
},
"dependencies": {
"@expo/vector-icons": "^14.0.2",
"@react-native-firebase/analytics": "^23.4.0",
"@react-native-firebase/app": "^23.4.0",
"@react-native-firebase/crashlytics": "^23.4.0",
"@react-native-firebase/messaging": "^23.4.0",
"@react-native-google-signin/google-signin": "^16.1.1",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native": "^7.0.14",
"@react-navigation/native-stack": "^7.2.0",
"@tanstack/react-query": "^5.66.9",
"axios": "^1.7.9",
"date-fns": "^4.1.0",
"expo": "53.0.16",
"expo-build-properties": "~0.14.8",
"expo-clipboard": "~7.1.5",
"expo-constants": "~17.1.5",
"expo-dev-client": "~5.2.3",
"expo-font": "~13.3.1",
"expo-linear-gradient": "~14.1.5",
"expo-linking": "~7.1.6",
"expo-notifications": "~0.31.3",
"expo-router": "~5.1.2",
"expo-secure-store": "^14.0.1",
"expo-splash-screen": "~0.30.9",
"expo-status-bar": "~2.2.3",
"expo-updates": "~0.28.15",
"hoist-non-react-statics": "^3.3.2",
"json-server": "^0.17.4",
"lowdb": "^7.0.1",
"react": "19.0.0",
"react-error-boundary": "^4.0.10",
"react-native": "0.79.5",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-pager-view": "^6.7.1",
"react-native-paper": "^5.13.1",
"react-native-reanimated": "~3.17.4",
"react-native-responsive-fontsize": "^0.5.1",
"react-native-safe-area-context": "^5.4.0",
"react-native-screens": "~4.11.1",
"react-native-toast-message": "^2.3.3",
"react-native-vector-icons": "^10.2.0",
"zustand": "^5.0.3",
"expo-apple-authentication": "~7.2.4"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/node": "^22.13.4",
"@types/react": "~19.0.10",
"@types/react-native-vector-icons": "^6.4.18",
"babel-plugin-module-resolver": "^5.0.2",
"expo-module-scripts": "^4.1.6",
"fs-extra": "^11.3.0",
"typescript": "^5.7.3"
},
"private": true
}