-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·110 lines (110 loc) · 3.84 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
{
"name": "reactNativeBase",
"version": "0.0.2",
"private": true,
"repository": {
"url": "[email protected]:aerian/react-native-base.git",
"type": "git"
},
"author": "sunya <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "eslint App/** -f stylish --quiet",
"lintdiff": "git diff --name-only --cached --relative | grep '\\.js$' | xargs eslint App/** -f stylish --quiet",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean",
"newclear": "rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build/ModuleCache/* && rm -rf node_modules/ && npm cache clean && npm i",
"test": "NODE_ENV=production ava",
"test:watch": "ava --watch -v",
"coverage": "nyc ava && nyc report --reporter=html && open coverage/index.html || xdg-open coverage/index.html",
"tron": "node_modules/.bin/reactotron",
"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",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"precommit": "if [ -d 'react-native-base' ]; then cd react-native-base; fi; npm run test; npm run lint"
},
"dependencies": {
"apisauce": "^0.7.0",
"babel-eslint": "^7.1.1",
"eslint": "^3.11.1",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-react-native": "^2.2.0",
"format-json": "^1.0.3",
"nyc": "^10.0.0",
"querystringify": "0.0.4",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"react-native": "0.41.2",
"react-native-animatable": "^1.1.0",
"react-native-device-info": "^0.9.7",
"react-native-drawer": "^2.3.0",
"react-native-git-upgrade": "^0.2.6",
"react-native-i18n": "^0.1.1",
"react-native-mock": "^0.2.9",
"react-native-modal-datetime-picker": "^3.0.0",
"react-native-router-flux": "^3.35.0",
"react-native-vector-icons": "^4.0.0",
"react-native-video": "^1.0.0",
"react-redux": "^4.4.2",
"reactotron-apisauce": "^1.6.0",
"reactotron-react-native": "^1.6.0",
"reactotron-redux": "^1.6.0",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-persist": "^4.0.0-beta1",
"redux-saga": "^0.13.0",
"seamless-immutable": "^6.1.0"
},
"jest": {
"preset": "react-native"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"enzyme": "^2.6.0",
"eslint": "^3.11.1",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-react-native": "^2.2.0",
"flow-bin": "^0.36.0",
"husky": "git://github.com/aerian-studios/husky.git",
"mockery": "^2.0.0",
"nyc": "^10.0.0",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"react-native-mock": "^0.2.9",
"reactotron-apisauce": "^1.6.0",
"reactotron-react-native": "^1.6.0",
"reactotron-redux": "^1.6.0"
},
"ava": {
"files": [
"Tests/**/*.js",
"!Tests/Setup.js"
],
"require": [
"babel-register",
"babel-polyfill",
"react-native-mock/mock",
"./Tests/Setup"
],
"babel": "inherit"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"fetch",
"navigator",
"__DEV__",
"XMLHttpRequest",
"FormData"
]
}
}