This repository has been archived by the owner on Dec 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.95 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
{
"name": "RNBaseProjectV3",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"postinstall": "npx jetify",
"build-debug-android": "node ./scripts/build-debug-android.js",
"build-release-android": "node ./scripts/build-release-android.js",
"test-e2e-android": "node ./scripts/test-e2e-android.js",
"test-e2e-ios": "node ./scripts/test-e2e-ios.js"
},
"dependencies": {
"@react-native-community/async-storage": "1.9.0",
"@react-native-community/netinfo": "5.7.0",
"axios": "0.19.2",
"i18n-js": "3.5.1",
"lodash.throttle": "4.1.1",
"react": "16.11.0",
"react-native": "0.62.1",
"react-native-device-info": "5.5.4",
"react-native-fast-image": "8.1.5",
"react-native-linear-gradient": "2.5.6",
"react-native-loading-spinner-overlay": "1.1.0",
"react-native-localize": "1.3.4",
"react-native-navigation": "6.4.0",
"react-native-snackbar": "2.2.0",
"react-native-splash-screen": "3.2.0",
"react-redux": "7.2.0",
"redux": "4.0.5",
"redux-persist": "6.0.0",
"redux-saga": "1.1.3"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/runtime": "7.9.2",
"@storybook/react-native": "5.3.18",
"@types/i18n-js": "3.0.1",
"@types/lodash.throttle": "4.1.6",
"@types/node": "13.11.0",
"@types/react": "16.9.32",
"@types/react-native": "0.62.1",
"@types/react-redux": "7.1.7",
"babel-jest": "25.2.6",
"detox": "16.0.2",
"jest": "25.2.7",
"metro-react-native-babel-preset": "0.59.0",
"prettier": "2.0.2",
"shell-utils": "1.0.10",
"tslint-config-airbnb": "5.11.2",
"typescript": "3.8.3"
},
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/RNBaseProjectV3.app",
"build": "xcodebuild -workspace ios/RNBaseProjectV3.xcworkspace -scheme RNBaseProjectV3 -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11 Pro Max"
}
},
"android.em.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && rm -rf app/build && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"device": {
"avdName": "Pixel_XL_API_29"
}
}
},
"test-runner": "jest"
},
"jest": {
"preset": "react-native"
}
}