forked from mariotacke/blog-single-user-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 860 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
{
"name": "single-user-websocket",
"version": "1.0.0",
"description": "Enforcing a single web socket connection per user",
"main": "index.js",
"scripts": {
"start:server": "nodemon server/index.js",
"start:web": "serve client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mariotacke/single-user-websocket.git"
},
"keywords": [],
"author": "Mario Tacke <tacke.mario@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mariotacke/single-user-websocket/issues"
},
"homepage": "https://github.com/mariotacke/single-user-websocket#readme",
"devDependencies": {
"nodemon": "^1.18.3",
"serve": "^9.4.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"redis": "^2.8.0",
"socket.io": "^2.1.1",
"socket.io-redis": "^5.2.0",
"socketio-auth": "^0.1.1"
}
}