-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.73 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
{
"name": "unknown",
"version": "0.0.1",
"private": true,
"scripts": {
"setup": "yarn && cd ./ios && pod install",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"flow start": "flow start",
"flow stop": "flow stop",
"flow status": "flow status",
"flow coverage": "flow coverage",
"run-ios": "react-native run-ios",
"run-android": "react-native run-android",
"export-apk": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res && cd ./android && ./gradlew assembleDebug",
"install-apk": "cd ./android/app/build/outputs/apk/debug && adb install app-debug.apk"
},
"dependencies": {
"@mapbox/polyline": "^1.0.0",
"axios": "^0.18.0",
"moment": "^2.22.2",
"prop-types": "^15.6.1",
"react": "16.3.1",
"react-native": "0.55.4",
"react-native-fbsdk": "^0.7.0",
"react-native-firebase": "^4.1.0",
"react-native-maps": "^0.21.0",
"react-native-progress": "^3.5.0",
"react-native-star-rating": "^1.0.9",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "^2.0.1",
"react-navigation-redux-helpers": "^1.0.7",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "22.4.3",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"jest": "22.4.3",
"react-test-renderer": "16.3.1"
},
"jest": {
"preset": "react-native"
}
}