-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.48 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.48 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "Daily",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"podInstall": "npx pod-install",
"getSvg": "node ./src/assets/svgs/getSvg.js",
"autoInstall": "yarn && jetify && npm run podInstall && npm run getSvg",
"env-beta": "node ./scripts/env.js -e beta",
"env-production": "node ./scripts/env.js -e production",
"apk-beta": "yarn env-beta && cd android && ./gradlew assembleReleaseBeta",
"apk-prod": "yarn env-production && cd android && ./gradlew assembleReleaseProd && cd .. && yarn env-beta",
"codepush-ios-beta": "yarn env-test && appcenter codepush release-react -a jerryli720/XXX-iOS -d Staging",
"codepush-android-beta": "yarn env-beta && appcenter codepush release-react -a jerryli720/XXX-Android -d Staging -t 1.5.1 && yarn env-beta",
"codepush-android-prod": "yarn env-production && appcenter codepush release-react -a jerryli720/XXX-Android -d Production -t ~1.7.0 && yarn env-beta"
},
"dependencies": {
"@ant-design/react-native": "^4.0.5",
"@react-native-community/async-storage": "^1.11.0",
"@react-native-community/cameraroll": "^4.0.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/picker": "^1.8.0",
"@react-native-community/segmented-control": "^2.1.2",
"@react-native-community/slider": "^3.0.3",
"@react-native-community/viewpager": "^4.1.6",
"@react-native-hero/toast": "^0.0.5",
"@react-navigation/material-top-tabs": "^5.2.16",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
"bignumber.js": "^9.0.0",
"dva": "^2.4.1",
"dva-core": "^2.0.4",
"dva-immer": "^0.5.1",
"dva-loading": "^3.0.22",
"dva-no-router": "^1.2.1",
"i18n-js": "^3.7.1",
"moment": "^2.29.0",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-native": "0.64.0",
"react-native-code-push": "^6.3.0",
"react-native-device-info": "^6.0.4",
"react-native-fast-image": "^8.3.2",
"react-native-gesture-handler": "^1.8.0",
"react-native-image-picker": "^3.2.1",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-keyboard-aware-scroll-view": "^0.9.2",
"react-native-linear-gradient": "^2.5.6",
"react-native-modal": "^11.5.6",
"react-native-navbar-color": "^1.0.3",
"react-native-orientation": "^3.1.3",
"react-native-reanimated": "^1.13.0",
"react-native-safe-area-context": "^3.1.8",
"react-native-screens": "^2.11.0",
"react-native-svg": "^12.1.0",
"react-native-tab-view": "^2.15.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"babel-jest": "^25.1.0",
"commander": "^6.1.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-react": "^7.9.1",
"jest": "^25.1.0",
"jetifier": "^1.6.5",
"metro-react-native-babel-preset": "^0.59.0",
"react-test-renderer": "16.13.1"
},
"jest": {
"preset": "react-native"
}
}