-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
36 lines (36 loc) · 941 Bytes
/
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
{
"name": "ReactNativeTestingExample",
"version": "0.0.1",
"scripts": {
"rn-cli": "node node_modules/react-native/local-cli/cli.js",
"start": "npm run rn-cli -- start",
"ios": "npm run rn-cli -- run-ios",
"android": "npm run rn-cli -- run-android",
"test": "jest"
},
"dependencies": {
"react": "15.3.1",
"react-native": "0.40.0",
"react-redux": "4.4.5",
"redux": "3.5.2",
"redux-thunk": "2.1.0"
},
"devDependencies": {
"babel-jest": "15.0.0",
"babel-preset-react-native": "1.9.0",
"enzyme": "^2.4.1",
"jest": "21.0.0",
"react-addons-test-utils": "15.3.1",
"react-dom": "15.3.1",
"react-test-renderer": "15.3.1",
"redux-mock-store": "1.1.4",
"snapshot-diff": "0.2.1"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./config/jest/globalFetch.js"
],
"setupTestFrameworkScriptFile": "./config/jest/snapshotDiff.js"
}
}