forked from mlding/rn-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.66 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
{
"name": "VitruviMobile",
"version": "1.1.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"setup": "yarn && cd ios && pod install",
"lint": "eslint src test e2e",
"pretest": "yarn lint",
"test": "NODE_ENV=test jest --coverage",
"update-icon": "./bin/replaceIcon.sh"
},
"dependencies": {
"axios": "^0.16.2",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"react": "16.0.0-alpha.12",
"react-native": "0.48.4",
"react-native-actionsheet": "^2.3.0",
"react-native-device-info": "^0.12.1",
"react-native-fcm": "^10.0.3",
"react-native-fs": "^2.8.1",
"react-native-image-picker": "0.26.7",
"react-native-interactable": "^0.1.7",
"react-native-keyboard-aware-scroll-view": "^0.3.0",
"react-native-keychain": "^1.2.1",
"react-native-maps": "^0.16.4",
"react-native-pdf-viewer": "^0.1.1",
"react-native-picker": "^4.2.0",
"react-native-progress": "^3.4.0",
"react-native-router-flux": "^4.0.0-beta.21",
"react-native-splash-screen": "^3.0.6",
"react-native-swipeout": "^2.2.2",
"react-native-vector-icons": "^4.4.0",
"react-redux": "^5.0.6",
"recompose": "^0.25.0",
"redux": "^3.6.0",
"redux-actions": "^2.2.1",
"redux-logger": "^3.0.6",
"redux-offline": "^2.0.0",
"redux-promise-middleware": "^4.4.1",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"supercluster": "^3.0.1"
},
"devDependencies": {
"axios-mock-adapter": "^1.9.0",
"babel-eslint": "^7.2.3",
"babel-jest": "20.0.3",
"babel-preset-react-native": "1.9.2",
"detox": "^6.0.2",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"jest": "20.0.4",
"jest-enzyme": "^3.8.2",
"jest-junit-reporter": "^1.1.0",
"react-dom": "16.0.0-beta.5",
"react-native-mock": "^0.3.1",
"react-test-renderer": "16.0.0-beta.5",
"redux-mock-store": "^1.3.0"
},
"detox": {
"configurations": {
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/VitruviMobile.app",
"build": "xcodebuild -workspace ios/VitruviMobile.xcworkspace -scheme VitruviMobile -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 7"
}
},
"test-runner": "jest",
"runner-config": "e2e/config.json"
},
"jest": {
"preset": "react-native",
"globals": {
"__DEV__": true
},
"transformIgnorePatterns": [
"/node_modules/(?!react-native|react-native-router-flux)/"
],
"testResultsProcessor": "./node_modules/jest-junit-reporter",
"setupFiles": [
"<rootDir>/jest-support/setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/e2e/"
],
"coverageThreshold": {
"global": {
"branches": 10,
"functions": 10,
"lines": 10,
"statements": 10
}
},
"coveragePathIgnorePatterns": [
"<rootDir>/jest-support/setup.js",
"<rootDir>/src/api/api.js",
"<rootDir>/src/report/create",
"<rootDir>/src/report/detail",
"<rootDir>/src/report/list",
"<rootDir>/src/report/material",
"<rootDir>/src/report/components",
"<rootDir>/src/components",
"<rootDir>/src/shared",
"<rootDir>/src/work-item/detail",
"<rootDir>/src/utilities/animaUtil",
"<rootDir>/src/notification/constants"
]
}
}