-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
42 lines (42 loc) · 1.38 KB
/
package.json
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
{
"name": "example",
"version": "1.0.0",
"scripts": {
"start": "EXPO_METRO_UNSTABLE_ERRORS=1 expo start --dev-client -c",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"fix-deps": "npx expo install --check",
"requires-ios": "npx metro get-dependencies --entry-file App.js --platform ios --output requires-ios.txt",
"requires-android": "npx metro get-dependencies --entry-file App.js --platform android --output requires-android.txt"
},
"dependencies": {
"@expo/react-native-action-sheet": "^4.1.0",
"@react-native-menu/menu": "^1.1.6",
"@react-navigation/bottom-tabs": "^7.0.7",
"@react-navigation/native": "^7.0.4",
"@react-navigation/native-stack": "^7.1.1",
"@react-navigation/stack": "^7.0.6",
"expo": "~52.0.11",
"expo-splash-screen": "~0.29.13",
"expo-status-bar": "~2.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "^4.1.2",
"react-native": "0.76.3",
"react-native-gesture-handler": "~2.20.2",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.1.0",
"react-native-web": "~0.19.13"
},
"resolutions": {
"@types/react": "18.2.79"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@expo/webpack-config": "~19.0.1",
"babel-loader": "^8.1.0"
},
"private": true,
"packageManager": "yarn@4.5.2"
}