forked from natevw/midisocket
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "remote-performer",
"version": "0.0.0",
"description": "Real-time music collaboration for the web",
"main": "src/index.js",
"scripts": {
"build": "browserify -t brfs src/public/js/app.js > src/public/js/bundle.js",
"start": "npm run build && node src/index.js",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "https://github.com/websound/RemotePerformer.git"
},
"author": "Nathan Ward",
"license": "MIT",
"bugs": {
"url": "https://github.com/websound/RemotePerformer/issues"
},
"homepage": "https://github.com/websound/RemotePerformer",
"dependencies": {
"bootstrap": "~3.1.0",
"brfs": "^1.4.1",
"eslint": "^2.8.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"font-awesome": "~4.0.3",
"hapi": "^11.0.3",
"inert": "^3.2.0",
"insert-css": "^0.2.0",
"jquery": "~2.1.0",
"watchify": "^3.7.0",
"ws": "~0.4.31"
},
"devDependencies": {
"browserify": "^12.0.1",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-standard": "^1.3.2",
"standard": "^5.3.1"
}
}