This repository has been archived by the owner on Feb 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.53 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
{
"name": "binder-web",
"version": "1.1.15",
"description": "client-side web app for managing a binder deployment",
"main": "index.js",
"scripts": {
"bundle:index": "browserify -t envify -t brfs site/index.js -o public/js/index.js",
"bundle:logs": "browserify site/logs.js -o public/js/logs.js",
"bundle:loading": "browserify site/loading.js -o public/js/loading.js",
"bundle:status": "browserify site/status.js -o public/js/status.js",
"bundle": "npm run bundle:index & npm run bundle:logs & npm run bundle:loading & npm run bundle:status",
"watch:index": "watchify -t envify -t brfs site/index.js -o public/js/index.js",
"watch:logs": "watchify site/logs.js -o public/js/logs.js",
"watch:loading": "watchify site/loading.js -o public/js/loading.js",
"watch:status": "watchify site/status.js -o public/js/status.js",
"watch": "npm run watch:index & npm run watch:logs & npm run watch:loading & npm run watch:status",
"start": "npm run bundle && node start.js start",
"start:debug": "npm run watch & node start.js start",
"postinstall": "npm run bundle && node scripts/postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binder-project/binder-web.git"
},
"keywords": [
"jupyter",
"spark",
"kubernetes",
"redux"
],
"author": "freeman-lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/binder-project/binder-web/issues"
},
"dependencies": {
"async": "^1.5.2",
"binder-client": "^1.0.1",
"binder-logging": "^1.0.0",
"binder-utils": "^1.0.0",
"body-parser": "^1.15.0",
"brfs": "^1.4.3",
"browser-request": "^0.3.3",
"browserify": "^13.0.0",
"date-and-time": "^0.3.0",
"dom-css": "^2.0.0",
"envify": "^3.4.1",
"express": "^4.13.4",
"express-ws": "^1.0.0",
"github-url-analyzer": "^0.1.1",
"hxdx": "^1.0.0",
"is-mobile": "^0.2.2",
"jsonfile": "^2.2.3",
"lodash.filter": "^4.2.1",
"lodash.find": "^4.2.0",
"lodash.map": "^4.2.1",
"lodash.merge": "^4.3.4",
"lodash.partial": "^4.1.2",
"lodash.startswith": "^4.0.0",
"lodash.zipobject": "^4.1.2",
"object-assign": "^4.1.0",
"object-extend": "^0.5.0",
"redux": "^3.0.0",
"request": "^2.69.0",
"sheet-router": "^2.0.5",
"shelljs": "^0.6.0",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5",
"through2-map": "^2.0.0"
},
"devDependencies": {
"budo": "^8.0.4",
"through2": "^2.0.1"
},
"homepage": "https://github.com/binder-project/binder-web#readme"
}