-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.78 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
{
"name": "tap-to-android",
"version": "1.0.0",
"description": "An application that enables everyone to provision their own Android instance, and stream it over the network",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack -p --config webpack-production.config.js",
"start": "npm run build && node server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeithq/tap-to-android.git"
},
"author": "Preethi Kasireddy",
"license": "ISC",
"bugs": {
"url": "https://github.com/zeithq/tap-to-android/issues"
},
"homepage": "https://github.com/zeithq/tap-to-android#readme",
"dependencies": {
"debug": "^2.2.0",
"dockerode": "^2.2.9",
"express": "^4.13.4",
"forever-monitor": "^1.7.0",
"fs": "0.0.2",
"json-loader": "^0.5.4",
"mustache": "^2.2.1",
"mustache-express": "^1.2.2",
"path": "^0.12.7",
"queue": "^3.1.0",
"redis": "^2.4.2",
"rfb2": "0.0.10",
"socket.io": "^1.4.4",
"socket.io-client": "^1.4.4",
"socket.io-emitter": "^1.0.0",
"socket.io-redis": "^1.0.0",
"zerorpc": "^0.9.6"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-2": "^6.3.13",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-friendly-formatter": "^1.2.2",
"eslint-loader": "^1.2.1",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.16.1",
"img-loader": "^1.2.2",
"webpack": "^1.12.12",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.6.4"
}
}