-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.39 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"build": "./build.sh",
"cleanup": "rm app.json & mv app2.json app.json",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject"
},
"dependencies": {
"@react-native-community/async-storage": "~1.12.0",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/native": "^5.7.5",
"@react-navigation/stack": "^5.9.2",
"axios": "^0.21.1",
"expo": "^40.0.0",
"expo-app-loading": "^1.0.1",
"expo-linear-gradient": "~8.4.0",
"expo-linking": "~2.0.1",
"expo-location": "~10.0.0",
"expo-status-bar": "~1.0.3",
"expo-web-browser": "~8.6.0",
"i18next": "^19.7.0",
"i18next-http-backend": "^1.0.21",
"prettier": "^2.1.1",
"randomcolor": "^0.6.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-i18next": "^11.7.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-elements": "^2.3.2",
"react-native-error-boundary": "^1.1.3",
"react-native-gesture-handler": "~1.8.0",
"react-native-hyperlink": "0.0.19",
"react-native-image-viewing": "^0.2.0",
"react-native-map-clustering": "^3.4.2",
"react-native-map-link": "^2.7.17",
"react-native-maps": "0.27.1",
"react-native-maps-directions": "^1.8.0",
"react-native-reanimated": "~1.13.0",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "~2.15.2",
"react-native-scroll-bottom-sheet": "^0.6.3",
"react-native-web": "~0.13.12",
"react-navigation": "^4.4.0",
"react-navigation-stack": "^2.8.2",
"react-navigation-tabs": "^2.9.0",
"reanimated-bottom-sheet": "^1.0.0-alpha.22",
"rn-sliding-up-panel": "^2.4.3"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@types/i18next": "^13.0.0",
"@types/react": "~16.9.35",
"@types/react-i18next": "^8.1.0",
"@types/react-native": "~0.63.2",
"babel-plugin-transform-remove-console": "^6.9.4",
"typescript": "~4.0.0"
},
"private": true,
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid"
}
}