-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 944 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 944 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
39
{
"name": "socketcluster-sample",
"description": "A sample SocketCluster app",
"version": "1.0.0",
"contributors": [
{
"name": "Jonathan Gros-Dubois",
"email": "grosjona@yahoo.com.au"
}
],
"dependencies": {
"connect": "^3.6.6",
"eetase": "^4.0.0",
"express": "^4.16.3",
"install": "^0.13.0",
"morgan": "^1.7.0",
"nodemon": "^2.0.7",
"npm": "^7.17.0",
"sc-errors": "^2.0.1",
"scc-broker-client": "^8.0.0",
"serve-static": "^1.13.2",
"socketcluster-client": "^16.0.3",
"socketcluster-server": "^16.0.2",
"uuid": "^3.3.2"
},
"keywords": [
"websocket",
"server",
"realtime",
"cluster",
"scalable"
],
"readmeFilename": "README.md",
"scripts": {
"start": "node server.js",
"start:watch": "./node_modules/nodemon/bin/nodemon.js server.js",
"start:docker": "./node_modules/nodemon/bin/nodemon.js /usr/src/app/server.js"
}
}