This repository has been archived by the owner on May 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
133 lines (133 loc) · 5.5 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "chainreactapp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "standard --verbose | snazzy && npm run tslint",
"tslint": "tslint 'App/**/*.{ts,tsx}'",
"fixts": "tslint 'App/**/*.{ts,tsx}' --fix",
"lintdiff": "git diff --name-only --cached --relative | grep '\\.js$' | xargs standard | snazzy",
"fixcode": "standard --fix",
"tryRelease": "react-native run-ios --configuration Release",
"bundle:ios": "react-native bundle --entry-file index.ios.js --platform ios --dev false --reset-cache --bundle-output ./ios/main.jsbundle --assets-dest ./ios/release/main.jsbundle",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean",
"clean:android": "cd android/ && ./gradlew clean && cd .. && react-native run-android",
"newclear": "rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build && rm -rf node_modules/ && npm cache clean && npm i",
"beta:ios": "cd ./ios && fastlane beta",
"beta:android": "cd ./android && fastlane beta",
"beta": "npm run beta:ios && npm run beta:android",
"push:ios": "code-push release-react ChainReactConf ios",
"push:android": "code-push release-react ChainReactConf-Android android",
"push:all": "yarn run push:ios && yarn run push:android",
"push:status": "echo 'iOS' && code-push deployment ls ChainReactConf && echo 'Android' && code-push deployment ls ChainReactConf-Android",
"push:history": "echo 'iOS Production History' && code-push deployment history ChainReactConf Production && echo 'Android Production History' && code-push deployment history ChainReactConf-Android Production",
"promote:ios": "code-push promote ChainReactConf Staging Production -t '*'",
"promote:android": "code-push promote ChainReactConf-Android Staging Production -t '*'",
"test": "ava",
"test:watch": "ava --watch",
"coverage": "nyc ava && nyc report --reporter=html && open coverage/index.html || xdg-open coverage/index.html",
"android:build": "cd android && ./gradlew assembleRelease",
"android:install": "cd android && ./gradlew assembleRelease && ./gradlew installRelease",
"android:hockeyapp": "cd android && ./gradlew assembleRelease && puck -submit=auto app/build/outputs/apk/app-release.apk",
"android:devices": "$ANDROID_HOME/platform-tools/adb devices",
"android:logcat": "$ANDROID_HOME/platform-tools/adb logcat *:S ReactNative:V ReactNativeJS:V",
"android:shake": "$ANDROID_HOME/platform-tools/adb devices | grep '\\t' | awk '{print $1}' | sed 's/\\s//g' | xargs -I {} $ANDROID_HOME/platform-tools/adb -s {} shell input keyevent 82",
"prepush": "npm run git-hook",
"git-hook": "npm run lint -s && npm test -s"
},
"dependencies": {
"apisauce": "0.13.0",
"date-fns": "^1.28.2",
"format-json": "^1.0.3",
"mobile-center-analytics": "^0.4.0",
"mobile-center-crashes": "^0.4.0",
"querystringify": "1.0.0",
"ramda": "0.24.1",
"react": "16.0.0-alpha.12",
"react-native": "^0.45.1",
"react-native-animatable": "1.2.2",
"react-native-blur": "^3.0.0-alpha",
"react-native-code-push": "^2.1.0-beta",
"react-native-config": "0.4.2",
"react-native-device-info": "^0.10.0",
"react-native-fade-in-image": "^1.0.3",
"react-native-i18n": "^1.0.0",
"react-native-linear-gradient": "https://github.com/react-native-community/react-native-linear-gradient.git",
"react-native-maps": "0.15.2",
"react-native-push-notification": "^3.0.0",
"react-native-smart-splash-screen": "^2.3.4",
"react-native-sound": "^0.10.3",
"react-native-statusbar-alert": "^0.2.0",
"react-native-vector-icons": "^4.0.1",
"react-native-video": "^1.0.0",
"react-navigation": "^1.0.0-beta.10",
"react-redux": "^5.0.5",
"reactotron-react-native": "^1.11.1",
"reactotron-redux": "^1.11.1",
"reactotron-redux-saga": "^1.11.1",
"redux": "^3.6.0",
"redux-persist": "^4.1.0",
"redux-saga": "0.15.3",
"reduxsauce": "0.5.0",
"seamless-immutable": "^7.0.1"
},
"devDependencies": {
"@jonny/react-native-mock": "^0.4.0",
"@types/ramda": "^0.0.11",
"@types/react": "^15.0.27",
"@types/react-native": "^0.44.10",
"@types/react-redux": "^4.4.42",
"@types/seamless-immutable": "^6.1.2",
"ava": "^0.19.1",
"babel-eslint": "^7.1.1",
"babel-plugin-ignite-ignore-reactotron": "^0.3.0",
"babel-preset-es2015": "^6.18.0",
"enzyme": "^2.8.2",
"husky": "^0.13.1",
"ignite-animatable": "1.0.0",
"ignite-dev-screens": "^2.0.0-beta.8",
"ignite-i18n": "1.0.0",
"ignite-ir-next": "0.1.0",
"ignite-maps": "^0.1.2",
"ignite-push-notification": "0.0.2",
"ignite-vector-icons": "1.0.0",
"ignite-video": "^0.0.2",
"mockery": "^2.0.0",
"nyc": "11.0.2",
"react-addons-test-utils": "16.0.0-alpha.3",
"react-dom": "16.0.0-alpha.12",
"react-native-typescript-transformer": "^1.0.9",
"snazzy": "7.0.0",
"standard": "10.0.2",
"tslint": "^5.4.3",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.3.4"
},
"ava": {
"files": [
"Tests/**/*.js",
"!Tests/Setup.js"
],
"require": [
"babel-register",
"babel-polyfill",
"@jonny/react-native-mock/mock",
"./Tests/Setup"
],
"babel": "inherit"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"fetch",
"navigator",
"__DEV__",
"XMLHttpRequest",
"FormData",
"React$Element"
]
}
}