-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "wip-mobile",
"version": "0.1.0",
"private": true,
"devDependencies": {
"jest-expo": "23.0.0",
"react-native-scripts": "1.8.1",
"react-test-renderer": "^16.3.1"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "jest"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!react-native|native-base-shoutem-theme|@shoutem/animation|@shoutem/ui|tcomb-form-native)"
],
"setupTestFrameworkScriptFile": "./enzyme.js",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/mocks/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/mocks/"
]
},
"dependencies": {
"axios": "^0.17.1",
"axios-mock-adapter": "^1.15.0",
"babel-jest": "^22.4.3",
"babel-preset-react-native": "^4.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"expo": "^23.0.4",
"moment": "^2.22.0",
"native-base": "^2.4.1",
"react": "16.0.0",
"react-dom": "^16.3.1",
"react-native": "0.50.3",
"react-native-material-dropdown": "^0.6.1",
"react-native-material-textfield": "^0.12.0",
"react-navigation": "^1.5.11",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-mock-store": "^1.5.1",
"redux-thunk": "^2.2.0"
}
}