-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 796 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 796 Bytes
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
{
"name": "jam-session",
"description": "A realtime web application for musical jam sessions.",
"version": "0.0.0",
"author": "Mark <mark@remarkablemark.org>",
"contributors": [
{
"name": "skratchdot",
"email": "git@skratchdot.com"
}
],
"scripts": {
"start": "NODE_ENV=production node ./bin/www",
"dev": "nodemon ./bin/www"
},
"keywords": [
"jam-session",
"realtime music",
"socket"
],
"dependencies": {
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.13.1",
"hbs": "~3.1.0",
"morgan": "~1.6.1",
"serve-favicon": "~2.3.0",
"socket.io": "^1.4.5"
},
"devDependencies": {
"nodemon": "^1.9.2"
},
"engines": {
"node": "4.4.0"
},
"license": "MIT"
}