-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "rnnav2",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --env=jsdom",
"android": "cd ./android && ./gradlew app:assembleDebug && ./gradlew installDebug"
},
"dependencies": {
"react": "16.6.3",
"react-dom": "^16.8.1",
"react-native": "0.57.8",
"react-native-background-fetch": "^2.7.1",
"react-native-navigation": "^2.8.0",
"react-native-shadow": "^1.2.2",
"react-native-sound": "^0.11.0",
"react-native-svg": "^9.10.2",
"react-redux": "^6.0.0",
"redux": "^4.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "24.0.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.5",
"jest": "24.0.0",
"metro-react-native-babel-preset": "0.51.1",
"react-test-renderer": "16.6.3",
"redux-mock-store": "^1.5.3"
},
"jest": {
"preset": "react-native",
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/setup/setupEnzyme.js",
"testPathIgnorePatterns": [
"<rootDir>/__tests__/setup/"
]
}
}