-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.58 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
81
82
83
{
"name": "barsearch",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --verbose",
"test watch": "jest --watch",
"flow start": "flow start",
"flow stop": "flow stop",
"flow status": "flow status",
"flow coverage": "flow coverage",
"build:ios": "react-native bundle --entry-file='index.js' --bundle-output='./ios/BarsApp/main.jsbundle' --dev=false --platform='ios' --assets-dest='./ios'",
"ios:beta": "(cd ios/ && bundle exec fastlane beta)",
"android:alpha": "(cd android/ && bundle exec fastlane alpha)"
},
"dependencies": {
"aws-amplify": "^1.0.8",
"aws-amplify-react-native": "^2.0.0",
"aws-appsync": "^1.3.4",
"aws-appsync-react": "^1.1.4",
"aws-sdk": "^2.325.0",
"axios": "^0.18.0",
"geolib": "^2.0.24",
"graphql-tag": "^2.9.2",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"react": "16.6.1",
"react-apollo": "^2.1.9",
"react-native": "0.57.7",
"react-native-app-intro-slider": "^1.0.1",
"react-native-code-push": "^5.4.2",
"react-native-collapsible": "^1.2.0",
"react-native-config": "^0.11.7",
"react-native-elements": "^0.19.1",
"react-native-geolocation-service": "^1.1.0",
"react-native-keyboard-aware-scroll-view": "^0.7.3",
"react-native-map-link": "^2.1.0",
"react-native-segmented-control-tab": "^3.3.1",
"react-native-splash-screen": "^3.1.1",
"react-native-swipeout": "^2.3.6",
"react-native-vector-icons": "^6.1.0",
"react-navigation": "^2.17.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "23.4.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-react-native": "^5",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"flow-bin": "0.75.0",
"jest": "23.4.1",
"metro-react-native-babel-preset": "^0.50.0",
"react-dom": "^16.5.2",
"react-test-renderer": "16.6.1"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"<rootDir>/app/config/setupJestEnzyme.js"
]
},
"rnpm": {
"assets": [
"./app/assets/fonts/"
]
}
}