-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 773 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 773 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
{
"name": "SocketChat",
"version": "0.4.0",
"description": "Chat app using Node.js, Socket.io and AngularJS",
"main": "app.js",
"dependencies": {
"ejs": "~0.8.5",
"express": "~4.0.0",
"body-parser": "~1.5.0",
"method-override": "~1.0.0",
"node-uuid": "~1.4.1",
"socket.io": "^1.0.6",
"underscore": "~1.5.2"
},
"devDependencies": {
"bower": "*"
},
"scripts": {
"postinstall": "bower install",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nickfogle/socketchat.git"
},
"author": "nick fogle <nickfogle@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nickfogle/socketchat"
},
"homepage": "https://github.com/nickfogle/socketchat"
}