-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.48 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": "Sambience",
"version": "1.1.2",
"description": "a music server",
"main": "Source/Server.js",
"scripts": {
"start": "node bin/server.js",
"watchify": "watchify -vd -e Source/Browser.js -o Web/app.js",
"build": "cross-env NODE_ENV=production browserify -g envify Source/Browser.js | uglifyjs -c warnings=false -m > Web/app.js"
},
"keywords": [
"music",
"server",
"rpi",
"hifi-station",
"playlist",
"web-ui"
],
"author": "Stormking <sturmspitze@googlemail.com>",
"license": "ISC",
"dependencies": {
"bootstrap": "^3.3.7",
"conf": "^1.2.0",
"debug": "^3.0.1",
"folder-walker": "^3.1.0",
"koa": "^2.3.0",
"koa-better-router": "^2.1.1",
"koa-session": "^5.5.0",
"koa-static": "^4.0.1",
"koa-websocket": "^4.1.0",
"lodash.debounce": "^4.0.8",
"monk": "^6.0.5",
"musicmetadata": "^2.0.5",
"nedb": "^1.8.0",
"pump": "^1.0.2",
"reconnecting-websocket": "^3.2.2",
"vue": "^2.0.1",
"vue-context-menu": "^2.0.6",
"vuedraggable": "^2.14.1"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babelify": "^7.2.0",
"browserify": "^13.0.1",
"browserify-hmr": "^0.3.1",
"cross-env": "^1.0.6",
"envify": "^3.4.1",
"uglify-js": "^2.5.0",
"vueify": "^9.1.0",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"browser": {
"vue": "vue/dist/vue.common.js"
}
}