-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.05 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
{
"name": "demo",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"bundle-ios": "node node_modules/react-native/local-cli/cli.js bundle --entry-file index.js --platform ios --dev false --bundle-output ./ios/bundle/index.ios.jsbundle --assets-dest ./ios/bundle",
"reset": "npm i && react-native link && cd ios && pod install",
"release": "cd android && ./gradlew assembleRelease",
"ra": "npm i && react-native link && npm run release && npm run ia",
"ios": "react-native run-ios",
"ia": "cd android/app/build/outputs/apk/release && adb install app-release.apk",
"ri": "npm run release && cd npm run ia"
},
"dependencies": {
"axios": "^0.18.0",
"date-fns": "^1.30.1",
"prop-types": "^15.7.2",
"react": "16.8.3",
"react-native": "0.59.4",
"react-native-amap-geolocation": "^0.3.2",
"react-native-amap3d": "https://github.com/lllang/react-native-amap3d#master",
"react-native-background-timer": "^2.1.1",
"react-native-date-picker": "^2.3.0",
"react-native-dialog": "^5.6.0",
"react-native-gesture-handler": "^1.1.0",
"react-native-image-picker": "^0.28.1",
"react-native-linear-gradient": "^2.5.4",
"react-native-refresh-list-view": "^1.0.10",
"react-native-root-siblings": "^3.1.7",
"react-native-simple-toast": "0.0.8",
"react-native-vector-icons": "^6.4.2",
"react-native-webview": "^5.8.1",
"react-native-wechat": "https://github.com/lllang/react-native-wechat#master",
"react-native-yunpeng-alipay": "https://github.com/lllang/react-native-yunpeng-alipay#master",
"react-navigation": "^3.6.0",
"react-redux": "^7.0.1",
"redux": "^4.0.1",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/runtime": "^7.4.2",
"babel-jest": "^24.6.0",
"jest": "^24.6.0",
"metro-react-native-babel-preset": "^0.53.1",
"react-test-renderer": "16.8.3"
},
"jest": {
"preset": "react-native"
}
}