-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.03 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.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
{
"name": "firstaidworker",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"apollo-boost": "^0.4.1",
"expo-location": "^5.0.1",
"formik": "^1.5.7",
"graphql": "^14.3.1",
"lodash": "^4.17.11",
"react": "16.8.3",
"react-apollo": "^2.5.6",
"react-native": "0.59.8",
"react-native-elements": "^1.1.0",
"react-native-fast-image": "^6.0.3",
"react-native-gesture-handler": "^1.3.0",
"react-native-keyboard-aware-scroll-view": "^0.8.0",
"react-native-maps": "^0.24.2",
"react-native-unimodules": "0.4.0",
"react-native-vector-icons": "^6.4.2",
"react-navigation": "^3.11.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/runtime": "^7.4.5",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.54.1",
"prettier-eslint": "^8.8.2",
"prop-types": "^15.7.2",
"react-dom": "^16.8.6",
"react-native-testing-library": "^1.9.1",
"react-test-renderer": "16.8.3",
"waait": "^1.0.5"
},
"jest": {
"preset": "react-native",
"collectCoverage": false,
"moduleDirectories": [
"node_modules",
"app"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"setupFiles": [
"<rootDir>/__tests__/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/__tests__/setup.js",
"<rootDir>/__tests__/mocksdata/*"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native)"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}