-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 KB
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
{
"name": "jukebox",
"version": "0.0.0",
"description": "Spotistic's Jukebox",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha --recursive",
"build": "browserify -t reactify public/js/main.jsx -o public/bundle.js",
"watch": "watchify -t reactify public/js/main.jsx -o public/bundle.js --debug -v"
},
"author": "Maxence Decrosse",
"license": "ISC",
"dependencies": {
"body-parser": "^1.3.0",
"cookie-parser": "~1.3.4",
"ejs": "^1.0.0",
"express": "^4.12.0",
"flux": "~2.0.1",
"hiredis": "^0.1.17",
"keymirror": "~0.1.1",
"lame": "^1.0.0",
"morgan": "^1.1.1",
"musicmetadata": "^0.6.4",
"node-ffprobe": "^1.2.2",
"object-assign": "~2.0.0",
"q": "^1.0.1",
"react": "~0.12.2",
"reactify": "^1.0.0",
"redis": "^0.10.3",
"serve-favicon": "^2.0.0",
"socket.io": "^1.0.6",
"socket.io-client": "^1.3.4",
"stream-transcoder": "0.0.3",
"throttle": "^1.0.3",
"unirest": "^0.2.7",
"ytdl-core": "^0.2.4"
},
"devDependencies": {
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"heapdump": "^0.2.9",
"sinon": "^1.10.3"
},
"browserify": {
"transform": [
[
"reactify"
]
]
}
}