-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.8 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
{
"name": "bionet",
"version": "0.0.1",
"dependencies": {
"accountdown": "^4.1.0",
"accountdown-basic": "^1.1.0",
"async": "^2.0.0-rc.6",
"browserify": "^13.0.1",
"buffer-equal-constant-time": "^1.0.1",
"colors": "^1.1.2",
"cookie-auth": "^2.4.2",
"cookie-cutter": "^0.1.1",
"ecstatic": "^0.8.0",
"email-validator": "^1.0.4",
"jsonwebtoken": "^5.7.0",
"less": "^2.7.1",
"level": "^1.3.0",
"minimist": "^1.2.0",
"ndjson": "^1.4.3",
"nodemailer": "^2.4.0",
"nodemailer-smtp-transport": "^2.5.0",
"reconnect-core": "^1.0.1",
"recursive-readdir": "^2.0.0",
"routes": "^2.1.0",
"rpc-multiauth": "0.0.1",
"rpc-multistream": "0.0.1",
"shoe": "0.0.15",
"ssh2": "^0.5.0",
"subleveldown": "^2.0.0",
"through2": "^2.0.1",
"uuid": "^2.0.2",
"watchify": "^3.7.0",
"websocket-stream": "^3.1.0"
},
"scripts": {
"build-js": "browserify www/main.js > static/bundle.js",
"build-css": "bin/cssify.js",
"build-html": "html-inline --template-wildcards -i www/index.html -o static/index.html",
"build": "npm run build-js && npm run build-css && npm run build-html",
"watch-js": "watchify www/main.js -o static/bundle.js -dv",
"watch-css": "nodemon -e css,less --watch www/css --exec \"npm run build-css\"",
"watch-html": "nodemon -e html --watch www --exec \"html-inline --template-wildcards -i www/index.html -o static/index.html\"",
"watch": "nodemon -e html --watch www --exec \"npm run build-html\" & nodemon -e css,less --watch www/css --exec \"npm run build-css && npm run build-html\" & ./bin/watchifier.js www/main.js -o static/bundle.js -x \"npm run build-html\"",
"watch-old": "npm run watch-js & npm run watch-css & npm run watch-html",
"start": "bin/cmd.js"
},
"license": "AGPL-3.0"
}