-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpackage.json
70 lines (70 loc) · 2.25 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
{
"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 --simulator 'iPhone 6'",
"test": "jest",
"precommit": "lint-staged"
},
"dependencies": {
"babel-plugin-root-import": "^6.4.1",
"jcore-react-native": "^1.3.1",
"jpush-react-native": "^2.5.1",
"react": "16.6.3",
"react-native": "0.57.8",
"react-native-animatable": "^1.2.4",
"react-native-code-push": "^5.5.1",
"react-native-device-info": "^0.24.3",
"react-native-gesture-handler": "^1.0.12",
"react-native-image-header-scroll-view": "^0.8.2",
"react-native-root-siblings": "^3.1.7",
"react-native-scrollable-tab-view": "^0.10.0",
"react-native-splash-screen": "^3.1.1",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "^3.12.1",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"rn-placeholder": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/runtime": "^7.2.0",
"babel-eslint": "^7.2.3",
"babel-jest": "23.6.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-es2015-duplicate-keys": "^6.24.1",
"babel-plugin-transform-remove-console": "^6.8.5",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"husky": "^1.0.0-rc.13",
"jest": "23.6.0",
"lint-staged": "^7.2.0",
"metro-react-native-babel-preset": "^0.51.1",
"react-test-renderer": "16.6.1"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"*.{js,json,css}": [
"eslint --fix ./ --cache --ignore-pattern .gitignore",
"git add"
]
}
}