This repository has been archived by the owner on Nov 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.28 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
64
65
66
67
68
69
70
71
{
"name": "Mozi",
"version": "2.0.1",
"private": true,
"license": "MIT",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "react-native run-android",
"an-release": "cd android && ./gradlew assembleRelease",
"an-clean": "cd android && ./gradlew clean",
"build": "cd node_modules/react-native/third-party/glog-0.3.5/ && ../../scripts/ios-configure-glog.sh",
"ios": "react-native run-ios",
"test": "jest",
"precommit": "lint-staged"
},
"dependencies": {
"jcore-react-native": "^1.3.2",
"jpush-react-native": "^2.5.3",
"react": "16.8.3",
"react-native": "^0.59.8",
"react-native-animatable": "^1.3.2",
"react-native-code-push": "^5.6.0",
"react-native-device-info": "^0.29.1",
"react-native-gesture-handler": "^1.3.0",
"react-native-image-header-scroll-view": "^0.10.3",
"react-native-root-siblings": "^3.2.1",
"react-native-scrollable-tab-view": "^0.10.0",
"react-native-splash-screen": "^3.2.0",
"react-native-table-component": "^1.2.0",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "^3.11.0",
"react-navigation-stack": "^1.4.0",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-actions": "^2.6.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"rn-placeholder": "^1.3.3"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/runtime": "^7.4.5",
"babel-eslint": "^7.2.3",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-es2015-duplicate-keys": "^6.24.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.13.0",
"husky": "^1.3.1",
"jest": "^24.8.0",
"lint-staged": "^7.3.0",
"metro-react-native-babel-preset": "^0.54.1",
"react-test-renderer": "16.8.6"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"*.{js,json,css}": [
"eslint --fix ./ --cache --ignore-pattern .gitignore",
"git add"
]
}
}