-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
executable file
·62 lines (62 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
60
61
62
{
"name": "LiveLab",
"version": "1.4.9",
"description": "browser-based media router for collaborative performance",
"main": "nw.js",
"scripts": {
"watch": "watchify -t [ envify --NODE_ENV development --version $npm_package_version] -d app/app.js -v -o public/bundle.js",
"build": "browserify -t [ envify --NODE_ENV production --version $npm_package_version] -d app/app.js -v -o public/bundle.js",
"start": "npm run build & node server.js",
"dev": "npm run watch & PORT=8000 node server.js",
"local": "NODE_ENV=localrun node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"publish-ojack": "git subtree push --prefix public ojack gh-pages",
"dist-nw": "node_modules/.bin/build --tasks win-x86,win-x64,mac-x64 .",
"start-nw": "node_modules/.bin/run ."
},
"keywords": [
"webrtc",
"p2p",
"webaudio",
"osc",
"show",
"control"
],
"author": "CultureHub and Olivia Jack",
"license": "AGPL",
"devDependencies": {
"browserify": "^16.5.1",
"cross-env": "^6.0.3",
"envify": "^4.1.0",
"nwjs": "^1.4.4",
"nwjs-builder-phoenix": "1.15.0",
"standard": "^14.3.1",
"watchify": "^3.11.1"
},
"dependencies": {
"anchorme": "^2.1.2",
"assert": "^2.0.0",
"base-elements": "^2.2.1",
"browserify-middleware": "^8.1.1",
"choo": "^7.0.0",
"choo-devtools": "^3.0.3",
"debug": "^4.1.1",
"enumerate-devices": "^1.1.1",
"express": "^4.17.1",
"nanoid": "^3.1.10",
"on-load": "^4.0.2",
"osc-js": "^2.1.0",
"osc-min": "^1.1.2",
"osc-receiver": "^1.1.3",
"simple-peer": "^9.6.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"tachyons": "^4.11.1"
},
"prettier": {
"printWidth": 120
},
"build": {
"nwVersion": "0.44.5"
}
}