-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.26 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
{
"name": "TestApp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "standard --verbose | snazzy",
"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": "mocha --opts Tests/mocha.opts Tests/ --recursive",
"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"
},
"dependencies": {
"apisauce": "^0.1.3",
"format-json": "^1.0.3",
"querystringify": "0.0.3",
"ramda": "^0.21.0",
"react": "15.0.2",
"react-native": "^0.26.1",
"react-native-animatable": "^0.6.0",
"react-native-device-info": "^0.9.3",
"react-native-drawer": "^2.2.2",
"react-native-i18n": "0.0.8",
"react-native-push-notification": "git@github.com:GantMan/react-native-push-notification.git",
"react-native-vector-icons": "^2.0.2",
"react-redux": "^4.4.2",
"redux": "^3.4.0",
"redux-logger": "^2.4.0",
"redux-persist": "^3.1.1",
"redux-saga": "^0.10.4",
"seamless-immutable": "^6.1.0"
},
"devDependencies": {
"babel-eslint": "^6.0.2",
"chai": "^3.5.0",
"chai-immutable": "^1.5.3",
"deep-freeze": "0.0.1",
"mocha": "^2.4.5",
"reactotron": "^0.6.0",
"snazzy": "^4.0.0",
"standard": "^7.0.1",
"reduxsauce": "0.1.0"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"fetch",
"navigator",
"__DEV__",
"XMLHttpRequest",
"FormData"
]
}
}