-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 740 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 740 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
{
"name": "draw",
"version": "0.0.0",
"description": "real-time collaborative drawing demo/test web app",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"postinstall": "node node_modules/bower/bin/bower install"
},
"keywords": [
"node",
"express",
"socketio"
],
"author": "Kareem Francis",
"dependencies": {
"async": "^0.9.0",
"bower": "^1.3.3",
"express": "^4.2.0",
"redis": "^0.10.2",
"socket.io": "^0.9.16"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-concurrent": "^0.5.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-nodemon": "^0.2.1"
}
}