-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 4.24 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "TakeOver",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"start-reset": "node node_modules/react-native/local-cli/cli.js start '--reset-cache'",
"vector": "rm ./node_modules/react-native/local-cli/core/__fixtures__/files/package.json",
"test": "jest",
"build-apk": "cd android && ./gradlew assembleRelease",
"android-clean": "cd android && ./gradlew clean",
"install-apk": "sh ./doc/install.sh",
"ios-production": "react-native run-ios --configuration Release",
"an-production": "react-native run-android --variant=release",
"dev": "react-native run-ios",
"getjs": "curl http://localhost:8081/index.ios.bundle -o main.jsbundle",
"bundle-ios": "react-native bundle --entry-file index.js --platform ios --bundle-output ./bundle/main.jsbundle --dev false --assets-dest ./bundle/",
"build:ios": "react-native bundle --entry-file='index.js' --bundle-output='./ios/BYTBibleDiary/main.jsbundle' --dev=false --platform='ios' --assets-dest='./ios'",
"e-ios": "react-native run-ios",
"d-ios": "react-native run-ios --device 'Youngdi' ",
"r-ios": "react-native run-ios --configuration Release --device 'Youngdi'",
"e-an": "react-native run-android",
"d-an": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res && react-native run-android",
"r-an": "sh ./doc/buildSignedApk.sh",
"code-push-ios-d": "code-push release-react takeOverLoveGodCamp_ios ios --plistFile ios/BYTBibleDiary/Info.plist",
"code-push-ios-p": "code-push release-react takeOverLoveGodCamp_ios ios --plistFile ios/BYTBibleDiary/Info.plist -d Production",
"code-push-an-d": "code-push release-react takeOverLoveGodCamp_an android --noDuplicateReleaseError",
"code-push-an-p": "code-push release-react takeOverLoveGodCamp_an android -d Production",
"code-push-look-ios": "code-push deployment ls takeOverLoveGodCamp_ios -k",
"code-push-look-an": "code-push deployment ls takeOverLoveGodCamp_an -k"
},
"dependencies": {
"cheerio-without-node-native": "^0.20.2",
"lottie-react-native": "2.2.0",
"mobx": "^4.1.1",
"mobx-react": "^5.0.0",
"mobx-state-tree": "^2.0.3",
"moment": "^2.20.1",
"prop-types": "^15.6.0",
"ramda": "^0.25.0",
"react": "16.3.1",
"react-native": "0.54.0",
"react-native-action-button": "^2.8.4",
"react-native-animatable": "^1.2.4",
"react-native-app-intro": "git+https://github.com/merryjs/react-native-app-intro.git",
"react-native-blur": "^3.2.2",
"react-native-camera": "^1.1.4",
"react-native-circular-action-menu": "^0.4.0",
"react-native-code-push": "^5.3.2",
"react-native-drawer": "^2.5.0",
"react-native-elements": "^1.0.0-beta2",
"react-native-fcm": "^12.0.0",
"react-native-fetch-blob": "^0.10.8",
"react-native-fs": "^2.9.7",
"react-native-gifted-chat": "^0.4.3",
"react-native-i18n": "^2.0.10",
"react-native-iphone-x-helper": "^1.0.1",
"react-native-loading-spinner-overlay": "^0.5.2",
"react-native-modal": "^4.1.1",
"react-native-modal-dropdown": "^0.6.0",
"react-native-modal-wrapper": "^3.1.0",
"react-native-modalbox": "^1.4.2",
"react-native-permissions": "^1.1.1",
"react-native-photo-view": "^1.5.2",
"react-native-popup-dialog": "^0.10.46",
"react-native-qrcode-scanner": "^1.0.1",
"react-native-radio-buttons": "^1.0.0",
"react-native-slider": "^0.11.0",
"react-native-spinkit": "^1.1.1",
"react-native-swipeout": "^2.3.3",
"react-native-swiper": "^1.5.13",
"react-native-vector-icons": "^4.4.3",
"react-navigation": "1.4.0",
"react-navigation-slide-from-right-transition": "^1.0.4",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-form": "^7.3.0",
"socket.io-client": "^2.1.0",
"styled-components": "^3.1.6",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-jest": "22.4.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-react-native": "4.0.0",
"babel-preset-stage-0": "^6.24.1",
"jest": "22.4.3",
"react-test-renderer": "16.3.1"
},
"jest": {
"preset": "react-native"
}
}