-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.52 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.52 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
{
"name": "Test",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"debug": "open 'rndebugger://set-debugger-loc?host=localhost&port=8081'",
"test": "jest",
"flow": "flow",
"bundle-ios": "node node_modules/react-native/local-cli/cli.js bundle --entry-file index.js --bundle-output iOS/main.jsbundle --platform 'ios' --assets-dest ./assets --dev false --reset-cache",
"bundle-android": "react-native bundle --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --platform android",
"port-reset": "adb reverse tcp:8081 tcp:8080 && adb shell input keyevent 82",
"reload": "adb shell input keyevent 82",
"ios": "react-native run-ios",
"android": "react-native run-android",
"reset": "watchman watch-del-all",
"ri": "rm -rf node_modules && npm install",
"internet-on": "sudo ifconfig en0 up",
"internet-off": "sudo ifconfig en0 down",
"release-ios": "code-push release-react Test ios",
"codepush-ios-beta": "code-push release-react Test ios --deploymentName Beta",
"promote-ios": "code-push promote Test Staging Beta",
"release-android": "code-push release-react Test android",
"codepush-android-beta": "code-push release-react Test android --deploymentName Beta",
"promote-android": "code-push promote Test Staging Beta",
"android-debug": "cd android && ./gradlew assembleDebug && cd ..",
"android-release": "cd android && ./gradlew --stop && ./gradlew clean && ./gradlew assembleRelease && cd ..",
"list-codepush-releases": "code-push deployment h Test Staging -a",
"codepush-app-keys": "code-push deployment ls Test -k",
"codepush-keys": "code-push deployment ls Test --displayKeys",
"list-all-apps": "code-push app ls",
"lint": "./node_modules/.bin/eslint . --ext .js",
"rp": "prettier --write \"**/*.json\" \"**/*.js\"",
"precommit": "npm run rp && lint-staged"
},
"dependencies": {
"lodash": "^4.17.10",
"moment": "^2.22.2",
"native-base": "^2.7.2",
"prop-types": "^15.6.2",
"query-string": "^6.1.0",
"react": "16.4.1",
"react-mixin": "^2.0.2",
"react-native": "0.56.0",
"react-native-animatable": "^1.3.0",
"react-native-code-push": "^5.4.0",
"react-native-fast-image": "^4.0.14",
"react-native-fcm": "^16.0.0",
"react-native-geocoding": "^0.3.0",
"react-native-in-app-notification": "^2.2.0",
"react-native-iphone-x-helper": "^1.0.3",
"react-native-loading-spinner-overlay": "^0.5.2",
"react-native-permissions": "^1.1.1",
"react-navigation": "^2.7.0",
"react-redux": "^5.0.7",
"react-timer-mixin": "^0.13.4",
"recyclerlistview": "^1.3.4",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-persist-transform-encrypt": "^2.0.1",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-jest": "23.4.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-react-native": "5.0.2",
"eslint": "^5.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^1.0.0-rc.13",
"jest": "23.4.1",
"lint-staged": "^7.2.0",
"prettier": "1.13.7",
"react-test-renderer": "16.4.1"
},
"jest": {
"preset": "react-native"
}
}