-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 4.38 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "boilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "npx jetify",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "tslint --project tsconfig.json",
"clean-build": "cd android && ./gradlew clean && cd ../",
"build-detox-debug": "npx jetify && detox build -c android.emu.debug",
"build-test-apk": "npx jetify && npx react-native run-android",
"build-detox-release": "npx jetify && detox build -c android.emu.release",
"build-release-apk": "npx jetify && cd android && ./gradlew assembleRelease && cd ../"
},
"dependencies": {
"@react-native-community/async-storage": "^1.7.1",
"@react-native-community/geolocation": "^2.0.2",
"@react-native-community/masked-view": "^0.1.6",
"@react-native-community/netinfo": "^5.6.1",
"@react-native-community/progress-view": "^1.0.3",
"@react-native-community/toolbar-android": "^0.1.0-rc.2",
"axios": "0.18.1",
"i18n-js": "^3.5.1",
"lottie-ios": "3.1.3",
"lottie-react-native": "^3.3.2",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-camera": "^3.18.0",
"react-native-chart-kit": "^5.1.1",
"react-native-circular-progress": "^1.3.6",
"react-native-config": "^0.12.0",
"react-native-drawer": "^2.5.1",
"react-native-fast-image": "^7.0.2",
"react-native-gesture-handler": "^1.5.6",
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-linear-gradient": "^2.5.6",
"react-native-modal": "^11.5.3",
"react-native-onesignal": "^3.6.4",
"react-native-reanimated": "^1.7.0",
"react-native-responsive-screen": "^1.3.1",
"react-native-safe-area-context": "^0.6.4",
"react-native-screens": "^2.0.0-alpha.34",
"react-native-side-drawer": "^1.2.5",
"react-native-svg": "^11.0.1",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^4.1.0",
"react-navigation-stack": "^2.1.0",
"react-navigation-tabs": "^2.7.0",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@react-native-community/eslint-config": "^0.0.5",
"@types/i18n-js": "^3.0.1",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.23",
"@types/react-native": "^0.61.22",
"@types/react-native-drawer": "^2.5.3",
"@types/react-native-vector-icons": "^6.4.5",
"@types/react-redux": "^7.1.7",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "3.6.1",
"@typescript-eslint/parser": "^3.8.0",
"babel-jest": "^24.9.0",
"babel-plugin-module-resolver": "^4.0.0",
"detox": "^15.2.2",
"eslint": "^7.6.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-react-hooks": "4.0.8",
"husky": "^4.2.5",
"jest": "^24.9.0",
"jetifier": "^1.6.5",
"lint-staged": "^10.2.10",
"metro-react-native-babel-preset": "^0.56.0",
"mocha": "^7.0.1",
"react-test-renderer": "16.9.0",
"tslint": "^6.1.0",
"tslint-react": "^4.2.0",
"typescript": "^3.9.7"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"detox": {
"configurations": {
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "npm rebuild detox && cd android && ./gradlew clean && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"device": {
"avdName": "Nexus_5X_API_28"
}
},
"android.emu.release": {
"binaryPath": "android/app/build/outputs/apk/release/app-release.apk",
"build": "npm rebuild detox && cd android && ./gradlew clean && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ..",
"type": "android.emulator",
"device": {
"avdName": "Nexus_5X_API_28"
}
}
},
"test-runner": "mocha"
}
}