forked from react-navigation/react-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 755 Bytes
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
{
"name": "ReduxExample",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "jest"
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "16.0.0-alpha.6",
"react-native": "^0.44.0",
"react-redux": "5.0.4",
"redux": "3.6.0"
},
"devDependencies": {
"babel-jest": "^20.0.1",
"jest": "^20.0.1",
"react-navigation": "file:../..",
"react-test-renderer": "15.5.4"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/../../jest-setup.js"
],
"modulePathIgnorePatterns": [
"/node_modules\/.*\/react-native/",
"/node_modules\/.*\/react/"
],
"transformIgnorePatterns": [
"/node_modules\/(?!react-native|react-navigation)/"
]
}
}