This repository has been archived by the owner on Jul 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.6 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
{
"name": "WHS",
"version": "2.0.0",
"private": true,
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.2.3",
"babel-eslint": "^10.0.1",
"eslint": "^5.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"jest-react-native": "^18.0.0",
"react-test-renderer": "^16.7.0"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest",
"lint": "node_modules/.bin/eslint src App.js App.test.js",
"deploy:precheck": "yarn lint",
"deploy:ios": "code-push release-react WHS-iOS ios --outputDir build/ios",
"deploy:android": "code-push release-react WHS-Android android --outputDir build/android",
"deploy:staging": "yarn run deploy:precheck && yarn run deploy:ios && yarn run deploy:android",
"upload-sourcemaps:base": "bugsnag-sourcemaps upload --upload-sources --add-wildcard-prefix --api-key 3fb4434641f5a8e78c8a1ca4ad968cc5",
"upload-sourcemaps:ios": "yarn run upload-sourcemaps:base --source-map build/ios/CodePush/main.jsbundle.map --minified-file build/ios/CodePush/main.jsbundle --minified-url main.jsbundle",
"upload-sourcemaps:android": "yarn run upload-sourcemaps:base --source-map build/android/CodePush/index.android.bundle.map --minified-file build/android/CodePush/index.android.bundle --minified-url index.android.bundle",
"upload-sourcemaps": "yarn run upload-sourcemaps:ios && yarn run upload-sourcemaps:android"
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"bugsnag-react-native": "^2.12.6",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"moment-duration-format": "^2.2.2",
"native-base": "^2.10.0",
"qrcode": "^1.3.2",
"react": "^16.7.0",
"react-native": "^0.57.8",
"react-native-cheerio": "^1.0.0-rc.4",
"react-native-code-push": "^5.5.1",
"react-native-dialog": "^5.5.0",
"react-native-extended-stylesheet": "^0.11.1",
"react-native-fetch-polyfill": "^1.1.2",
"react-native-looped-carousel": "^0.1.13",
"react-native-parallax-scroll-view": "^0.21.3",
"react-native-photo-upload": "^1.3.0",
"react-native-progress": "git+https://github.com/Li357/react-native-progress.git",
"react-native-snap-carousel": "^3.7.2",
"react-navigation": "^2.5.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0"
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
}
}