-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "reactNativePractice",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"dependencies": {
"immutability-helper": "^2.6.3",
"lodash.debounce": "^4.0.8",
"native-base": "^2.3.6",
"react": "16.0.0",
"react-native": "0.50.4",
"react-native-admob": "^2.0.0-beta.4",
"react-native-elements": "^0.18.5",
"react-native-google-places": "^2.4.2",
"react-native-maps": "^0.18.3",
"react-native-router-flux": "^4.0.0-beta.27",
"react-native-splash-screen": "^3.0.6",
"react-native-vector-icons": "^4.4.3",
"react-navigation": "^1.0.0-beta.23",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"superagent": "^3.8.2"
},
"devDependencies": {
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "21.2.1",
"react-test-renderer": "16.0.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.4.0",
"watchman": "^1.0.0"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./config/jest/globalFetch.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation|mobx-react)"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}