-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.9 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.9 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "H2H",
"version": "0.0.1",
"private": true,
"scripts": {
"bundle": "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",
"start": "react-native run-android",
"start:old": "node node_modules/react-native/local-cli/cli.js start",
"build": "npm run bundle && cd android && ./gradlew clean assembleRelease",
"test": "jest",
"prettier": "prettier './**/*.js'",
"precommit": "lint-staged",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"test:e2e": "detox build -c android.emu.debug && detox test -c android.emu.debug",
"adb:reverse": "adb reverse tcp:3000 tcp:3000"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@babel/core": "^7.0.0-0",
"apollo-cache-inmemory": "^1.3.7",
"apollo-cache-persist": "^0.1.1",
"apollo-client": "^2.4.4",
"apollo-link": "^1.2.3",
"apollo-link-context": "^1.0.9",
"apollo-link-error": "^1.1.1",
"apollo-link-http": "^1.5.5",
"apollo-link-state": "^0.4.2",
"apollo-upload-client": "^10.0.0",
"bottleneck": "^2.13.0",
"color": "^3.1.0",
"formik": "^1.3.1",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"i18next": "^12.0.0",
"install": "^0.12.2",
"moment": "^2.23.0",
"react": "16.5.0",
"react-apollo": "^2.2.3",
"react-i18next": "^8.1.2",
"react-native": "0.57.1",
"react-native-app-intro-slider": "^1.0.1",
"react-native-camera": "^1.5.1",
"react-native-config": "^0.11.5",
"react-native-flash-message": "^0.1.10",
"react-native-gesture-handler": "^1.0.9",
"react-native-image-crop-picker": "^0.21.3",
"react-native-keyboard-aware-scroll-view": "^0.7.4",
"react-native-languages": "^3.0.1",
"react-native-linear-gradient": "^2.5.3",
"react-native-maps": "^0.22.1",
"react-native-maps-super-cluster": "^1.5.0",
"react-native-modal-datetime-picker": "^6.0.0",
"react-native-paper": "^2.2.8",
"react-native-qrcode": "^0.2.7",
"react-native-qrcode-scanner": "^1.1.0",
"react-native-segmented-control-tab": "^3.3.1",
"react-native-sentry": "^0.39.0",
"react-native-splash-screen": "^3.1.1",
"react-native-text-input-mask": "^0.8.0",
"react-native-vector-icons": "^6.0.2",
"react-navigation": "^3.0.0",
"react-navigation-material-bottom-tabs": "^1.0.0",
"react-navigation-props-mapper": "^0.3.0",
"react-navigation-tabs": "^1.0.2",
"uuid": "^3.3.2",
"yup": "^0.26.6"
},
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "23.6.0",
"detox": "^9.0.6",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-jest": "^21.27.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.5.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "23.6.0",
"metro-react-native-babel-preset": "^0.45.0",
"prettier": "^1.14.3",
"react-test-renderer": "16.6.0"
},
"jest": {
"preset": "react-native"
},
"detox": {
"test-runner": "jest",
"configurations": {
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"name": "testAVD"
},
"android.emu.release": {
"binaryPath": "android/app/build/outputs/apk/release/app-release.apk",
"build": "cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ..",
"type": "android.emulator",
"name": "testAVD"
}
}
}
}