forked from SemperChen/NovelAPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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
{
"name": "NovelAPP",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "react-native run-android",
"android-release": "react-native run-android --variant=release",
"ios": "react-native run-ios",
"test": "jest",
"eject": "react-native eject",
"npm install": "npm install",
"delete the node_modules": "rm -rf node_modules",
"reset packager cache": "rm -fr $TMPDIR/react-* or node_modules/react-native/packager/packager.sh --reset-cache",
"clear watchman watches": "watchman watch-del-all"
},
"dependencies": {
"lodash": "^4.17.11",
"prop-types": "^15.6.2",
"react": "16.6.3",
"react-native": "0.58.1",
"react-native-exit-app": "^1.0.0",
"react-native-i18n": "^2.0.15",
"react-native-orientation": "^3.1.3",
"react-native-scrollable-tab-view": "^0.9.0",
"react-native-storage": "^0.2.3",
"react-native-vector-icons": "^6.0.2",
"react-navigation": "^2.18.2",
"react-navigation-redux-helpers": "^2.0.8",
"react-redux": "^5.1.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.2"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "24.0.0",
"jest": "24.0.0",
"metro-react-native-babel-preset": "0.51.1",
"react-test-renderer": "16.6.3"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
}
}