-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1014 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1014 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
40
41
42
43
44
45
46
47
{
"name": "deepseen-ws",
"version": "1.0.0",
"description": "A Websockets server for the Deepseen project",
"private": true,
"type": "module",
"homepage": "https://github.com/peterdee/deepseen-ws",
"author": {
"name": "Peter Dyumin",
"url": "https://github.com/peterdee"
},
"scripts": {
"dev": "nodemon ./index.js",
"lint": "eslint",
"start": "node ./index.js"
},
"engines": {
"node": "~14.15.4",
"npm": "~7.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterdee/deepseen-ws"
},
"keywords": [
"JWT",
"Node",
"Redis",
"Socket.IO",
"Websockets"
],
"license": "MIT",
"dependencies": {
"axios": "^0.21.0",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"redis": "^3.0.2",
"socket.io": "^3.0.4"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.6"
}
}