-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
80 lines (80 loc) · 2.71 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
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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "BROWSER=none expo start",
"clean-start": "expo start -c",
"tunnel": "expo start --tunnel",
"offline": "expo start --offline --localhost",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "node_modules/.bin/jest --watchAll",
"postinstall": "node ./scripts/postinstall.js",
"testDebug": "jest -o --watch --coverage=false",
"contributors": "node ./scripts/contributors.js"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./jest/setup.js"
],
"setupFilesAfterEnv": [
"./jest/setup-extensions.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|@sentry/.*)"
]
},
"dependencies": {
"@expo/vector-icons": "^10.0.0",
"@react-native-community/async-storage": "~1.12.0",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.9.1",
"@react-navigation/native": "^5.7.5",
"@react-navigation/stack": "^5.9.2",
"base-64": "^0.1.0",
"expo": "^39.0.0",
"expo-apple-authentication": "~2.2.1",
"expo-camera": "~9.0.0",
"expo-constants": "~9.2.0",
"expo-crypto": "~8.3.0",
"expo-facebook": "~9.0.0",
"expo-google-app-auth": "^8.0.1",
"expo-google-sign-in": "~8.3.0",
"expo-image-manipulator": "~8.3.0",
"expo-image-picker": "~9.1.0",
"expo-notifications": "~0.7.2",
"expo-permissions": "~9.3.0",
"firebase": "7.9.0",
"formik": "^2.1.4",
"geofirestore": "^4.1.3",
"mem": ">=4.0.0",
"minimist": ">=1.2.3",
"moment": "^2.0.0",
"react": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.0.tar.gz",
"react-native-fbsdk": "^1.0.1",
"react-native-gesture-handler": "~1.7.0",
"react-native-image-pan-zoom": "^2.1.12",
"react-native-keyboard-aware-scrollview": "^2.1.0",
"react-native-maps": "0.27.1",
"react-native-picker-select": "^6.6.0",
"react-native-reanimated": "~1.13.0",
"react-native-safe-area-context": "3.1.4",
"react-native-screens": "~2.10.1",
"react-native-segmented-control-tab": "^3.4.1",
"react-native-svg": "12.1.0",
"react-native-webview": "10.7.0",
"react-redux": "^7.2.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"yup": "^0.28.3"
},
"devDependencies": {
"babel-preset-expo": "^8.3.0",
"jest-expo": "^39.0.0",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "^16.9.0"
},
"private": true
}