-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
47 lines (47 loc) · 1.66 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
{
"name": "GooglePlayMusicDesktopRemote",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"reset": "watchman watch-del-all && rm -rf node_modules/ && npm cache clean && npm prune && npm i",
"generate-apk": "curl 'http://localhost:8081/index.android.bundle?platform=android' -dev=false -o 'android/app/src/main/assets/index.android.bundle' && android/gradlew assembleRelease -p android/",
"lint": "eslint src",
"test": "mocha --opts test/mocha.opts test/ --recursive",
"testwatch": "mocha --opts test/mocha.opts test/ --recursive --watch",
"coverage": "nyc mocha --opts test/mocha.opts test/ --recursive",
"lintest": "eslint src && mocha --opts test/mocha.opts test/ --recursive"
},
"dependencies": {
"babel-eslint": "^6.0.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"mobx": "^2.2.1",
"mobx-react": "^3.3.0",
"react": "15.0.2",
"react-native": "^0.26.2",
"react-native-drawer-layout": "^1.0.0",
"react-native-material-kit": "github:xinthink/react-native-material-kit",
"react-native-scrollable-tab-view": "^0.5.0",
"react-native-vector-icons": "^2.0.3",
"react-native-zeroconf": "^0.5.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.10.2",
"eslint-config-mostaza": "^1.0.3",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"mocha": "^2.5.3",
"nyc": "^6.4.4",
"react-native-mock": "^0.2.2",
"sinon": "^1.17.4"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"__DEV__",
"WebSocket"
]
}
}