-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.96 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
{
"name": "qrcode",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"test:update": "jest -u",
"test:coverage": "jest --coverage",
"run:ios": "react-native run-ios",
"run:android": "react-native run-android",
"lint": "./node_modules/eslint/bin/eslint.js src",
"lint:fix": "./node_modules/eslint/bin/eslint.js src --fix",
"flow": "./node_modules/flow-bin/cli.js",
"e2e:build": "detox build --configuration ios.sim.debug",
"e2e:test": "detox test --configuration ios.sim.debug"
},
"dependencies": {
"i18n-js": "^3.1.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"moment-timezone": "^0.5.23",
"react": "16.6.1",
"react-native": "0.57.5",
"react-native-calendar-events": "^1.6.3",
"react-native-camera": "gaykov/react-native-camera",
"react-native-color": "^0.0.10",
"react-native-contacts": "^2.2.4",
"react-native-easy-toast": "gaykov/react-native-easy-toast",
"react-native-firebase": "^5.1.1",
"react-native-gesture-handler": "^1.0.9",
"react-native-iap": "2.4.0-beta6",
"react-native-keyboard-aware-scroll-view": "^0.7.4",
"react-native-languages": "^3.0.1",
"react-native-linear-gradient": "^2.5.2",
"react-native-open-maps": "^0.3.2",
"react-native-paper": "^2.3.0",
"react-native-qrcode-scanner": "^1.1.0",
"react-native-qrcode-svg": "^5.1.1",
"react-native-rate": "^1.1.6",
"react-native-share": "^1.1.3",
"react-native-sound": "^0.10.9",
"react-native-svg": "^8.0.9",
"react-native-ui-lib": "^3.5.0",
"react-native-vector-icons": "^6.1.0",
"react-navigation": "^3.0.0",
"react-navigation-material-bottom-tabs": "^1.0.0",
"react-redux": "^5.1.1",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"tinycolor2": "^1.4.1",
"vcard-parser": "^1.0.0"
},
"devDependencies": {
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.1",
"babel-jest": "23.6.0",
"detox": "^12.9.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "0.78.0",
"jest": "23.6.0",
"jsdom": "13.0.0",
"jsdom-global": "3.0.2",
"metro-react-native-babel-preset": "0.49.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.6.3",
"react-test-renderer": "16.6.1",
"sinon": "^7.1.1"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**",
"!android/**",
"!ios/**",
"!assets/**"
],
"coverageDirectory": "jest_coverage",
"setupFiles": [
"./jest-setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/e2e/"
]
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
},
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/qrcode.app",
"build": "xcodebuild -UseModernBuildSystem=NO -project ios/qrcode.xcodeproj -scheme qrcode -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone XS"
},
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/qrcode.app",
"build": "xcodebuild -UseModernBuildSystem=NO -project ios/qrcode.xcodeproj -scheme qrcode -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 7"
}
},
"test-runner": "jest"
}
}