-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
56
57
58
59
60
61
62
63
{
"name": "mdroid",
"version": "0.5.4",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"dependencies": {
"buffer": "^5.0.8",
"prop-types": "^15.6.0",
"react": "16.0.0",
"react-native": "0.51.0",
"react-native-apk": "^0.2.2",
"react-native-fast-image": "^2.0.1",
"react-native-fetch-blob": "^0.10.8",
"react-native-htmlview": "^0.12.1",
"react-native-search-filter": "^0.1.3",
"react-native-smart-splash-screen": "^2.3.5",
"react-native-vector-icons": "^4.4.3",
"react-native-zip-archive": "^2.2.0",
"react-navigation": "^1.0.0-beta.22",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"xmldom": "^0.1.27"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.37",
"@babel/preset-env": "^7.0.0-beta.37",
"babel-eslint": "^8.1.2",
"babel-jest": "^22.0.4",
"babel-preset-react-native": "^4.0.0",
"eslint": "^4.14.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-react-native": "^3.2.0",
"expect": "^22.0.6",
"jest": "^22.0.4",
"react-test-renderer": "^16.2.0",
"reactotron-react-native": "^1.14.0",
"reactotron-redux": "^1.13.0",
"redux-devtools-extension": "^2.13.2",
"redux-mock-store": "^1.4.0"
},
"resolutions": {
"uglify-es": "3.2.2"
},
"jest": {
"preset": "react-native",
"globals": {
"__DEV__": true,
"IS_TESTING": true,
"window": {}
},
"transform": {
"^.+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
]
}
}