-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1012 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
38
39
40
41
42
{
"name": "stupid-sockets",
"version": "2.0.2",
"description": "A stupidly simple socket server",
"main": "index.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"production": "cross-env LOGLEVEL=info node index.js",
"serve": "cross-env LOGLEVEL=debug node index.js"
},
"engines": {
"node": ">=16",
"npm": ">=7"
},
"repository": {
"type": "git",
"url": "[email protected]:appknox/stupid-sockets.git"
},
"keywords": [
"sockets"
],
"author": "Appknox <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/appknox/stupid-sockets/issues"
},
"homepage": "https://github.com/appknox/stupid-sockets",
"dependencies": {
"cross-env": "^7.0.3",
"pino": "^6.11.3",
"pino-pretty": "^4.7.1",
"redis": "^3.1.2",
"socket.io": "^4.0.1",
"socket.io-redis": "^6.1.0"
},
"devDependencies": {},
"volta": {
"node": "16.13.2"
}
}