-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 875 Bytes
/
package.json
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
{
"private": true,
"name": "socketio-proxy-boilerplate",
"version": "0.1.0",
"description": "An example of proxying socket.io connections",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"start:dev": "DEBUG=spb:* nodemon index.js -w index.js -w index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MethodGrab/socketio-proxy-boilerplate.git"
},
"keywords": [
"boilerplate",
"demo",
"example",
"socket.io",
"http-proxy",
"express"
],
"author": "MethodGrab",
"license": "MIT",
"dependencies": {
"debug": "^2.2.0",
"express": "^4.13.3",
"http-proxy": "^1.12.0",
"morgan": "^1.6.1",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7"
},
"devDependencies": {
"nodemon": "^1.8.1"
}
}