-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.53 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
{
"name": "example",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"reset-project": "node ./scripts/reset-project.js",
"start": "npx expo start --dev-client --clear",
"start:android": "npx expo start --android --dev-client --clear",
"start:ios": "npx expo start --ios --dev-client --clear",
"start:web": "npx expo start --web --clear",
"lint": "expo lint",
"fresh": "yarn start --reset-cache",
"installDevBuild:ios": "expo run:ios",
"installDevBuild:android": "expo run:android",
"rebuildNativeDeps": "yarn expo prebuild",
"rebuildNativeDeps:clean": "yarn expo prebuild --clean",
"android": "expo run:android",
"ios": "expo run:ios"
},
"dependencies": {
"@expo/react-native-action-sheet": "^4.1.1",
"@expo/vector-icons": "^15.1.1",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^7.18.2",
"@react-navigation/elements": "^2.9.25",
"@react-navigation/native": "^7.3.3",
"expo": "^56",
"expo-build-properties": "~56.0.19",
"expo-clipboard": "~56.0.4",
"expo-constants": "~56.0.18",
"expo-font": "~56.0.7",
"expo-haptics": "~56.0.3",
"expo-image": "~56.0.11",
"expo-image-picker": "~56.0.18",
"expo-linking": "~56.0.14",
"expo-location": "~56.0.18",
"expo-router": "~56.2.11",
"expo-splash-screen": "~56.0.10",
"expo-status-bar": "~56.0.4",
"expo-symbols": "~56.0.6",
"expo-system-ui": "~56.0.5",
"expo-web-browser": "~56.0.5",
"libphonenumber-js": "^1.13.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.85.3",
"react-native-emoji-chooser": "^0.1.11",
"react-native-gesture-handler": "~2.31.1",
"react-native-gifted-chat": "link:..",
"react-native-keyboard-controller": "^1.21.6",
"react-native-maps": "^1.27.2",
"react-native-paper": "^5.15.3",
"react-native-reanimated": "^4.3.1",
"react-native-safe-area-context": "^5.7.0",
"react-native-screens": "^4.25.2",
"react-native-svg": "15.15.4",
"react-native-web": "~0.21.2",
"react-native-worklets": "^0.9.2"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@react-native/metro-config": "0.85.3",
"@react-native/typescript-config": "0.85.3",
"@types/react": "~19.2.17",
"@types/react-test-renderer": "^19.1.0",
"babel-plugin-module-resolver": "^5.0.3",
"eslint": "^10.5.0",
"eslint-config-expo": "~56.0.4",
"jest": "^30.4.2",
"react-test-renderer": "19.2.3",
"typescript": "~6.0.3"
},
"private": true
}