forked from lpinca/binb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 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
53
54
{
"name": "binb",
"version": "1.0.6",
"description": "Competitive, multiplayer, realtime, guess the song game",
"homepage": "https://binb.co",
"bugs": "https://github.com/lpinca/binb/issues",
"repository": "lpinca/binb",
"author": "Luigi Pinca",
"license": "MIT",
"scripts": {
"minify": "for f in public/js/{app,home,leaderboards}; do uglifyjs $f.js -o $f.min.js; done",
"import-data": "node util/load_sample_tracks.js",
"start": "node app.js"
},
"dependencies": {
"async": "2.0.x",
"body-parser": "1.15.x",
"connect-redis": "3.1.x",
"cookie-parser": "1.4.x",
"express": "4.14.x",
"express-session": "1.14.x",
"faye-websocket": "0.11.x",
"forwarded-for": "1.0.x",
"jade": "1.11.x",
"nodemailer": "2.5.x",
"primus": "6.0.x",
"primus-emitter": "3.1.x",
"primus-rooms": "3.4.x",
"redis": "2.6.x",
"serve-favicon": "2.3.x",
"uglify-js": "2.7.x"
},
"bundledDependencies": [
"async",
"body-parser",
"connect-redis",
"cookie-parser",
"express",
"express-session",
"faye-websocket",
"forwarded-for",
"jade",
"nodemailer",
"primus",
"primus-emitter",
"primus-rooms",
"redis",
"serve-favicon",
"uglify-js"
],
"devDependencies": {
"JSONStream": "1.1.x"
}
}