-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.03 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.03 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
{
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest --detectOpenHandles",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@react-native-community/async-storage": "^1.4.2",
"axios": "^0.18.1",
"lodash": "^4.17.11",
"react": "16.5.0",
"react-native": "^0.59.8",
"react-native-elements": "1.0.0-beta5",
"react-native-gesture-handler": "^1.2.1",
"react-native-linear-gradient": "^2.5.4",
"react-native-raw-bottom-sheet": "^2.0.2",
"react-native-root-toast": "^3.0.2",
"react-native-vector-icons": "^6.4.2",
"react-navigation": "^3.0.9",
"react-navigation-redux-helpers": "^3.0.2",
"react-redux": "6.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-persist": "^5.9.1",
"redux-saga": "^1.0.2",
"yup": "^0.27.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-expo": "^5.0.0",
"babel-register": "^6.26.0",
"detox": "^12.10.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.4.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"metro-react-native-babel-preset": "^0.54.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"randomstring": "^1.1.5",
"react-native-dotenv": "^0.2.0",
"react-test-renderer": "^16.8.6"
},
"rnpm": {
"assets": [
"./assets/fonts"
]
},
"detox": {
"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": "Pixel_2_API_28"
},
"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": "emulator"
},
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/paymentappejected.app",
"build": "xcodebuild -project ios/paymentappejected.xcodeproj -scheme paymentappejected -configuration Release -sdk iphonesimulator -derivedDataPath ios/build -UseModernBuildSystem=NO",
"type": "ios.simulator",
"name": "iPhone 7"
}
},
"test-runner": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"private": true
}