-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 KB
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
{
"name": "react-native-weather",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-preset-node6": "^11.0.0",
"fetch-mock": "^5.13.1",
"jest-expo": "^21.0.2",
"lodash": "^4.17.4",
"mock-async-storage": "^1.0.3",
"react-native-scripts": "1.5.0",
"react-test-renderer": "^16.0.0",
"redux-mock-store": "^1.3.0"
},
"rnpm": {
"assets": [
"./font"
]
},
"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": "node node_modules/jest/bin/jest.js -u --watchAll -e --colors --verbose --coverage"
},
"jest": {
"preset": "jest-expo",
"globals": {
"__DEV__": true
},
"unmockedModulePathPatterns": [
"node_modules/react/",
"node_modules/enzyme/"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
]
},
"dependencies": {
"@expo/vector-icons": "^5.2.0",
"expo": "^21.0.0",
"immutable": "^3.8.2",
"native-base": "^2.3.2",
"react": "16.0.0-alpha.12",
"react-native": "^0.48.4",
"react-navigation": "^1.0.0-beta.13",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-thunk": "^2.2.0"
}
}