-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 KB
/
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
43
44
45
46
47
48
49
50
51
52
{
"name": "adrift-ws",
"version": "1.0.0",
"private": "true",
"description": "Websockets server for the Adrift project",
"author": {
"name": "Peter Dyumin",
"url": "https://github.com/peterdee"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon",
"lint": "eslint",
"start": "npm run build && node ./build/index.js"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrift-audio/adrift-ws"
},
"homepage": "https://github.com/adrift-audio/adrift-ws",
"keywords": [
"Adrift",
"Node",
"Redis",
"Socket.IO",
"Typescript"
],
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"jsonwebtoken": "^8.5.1",
"redis": "^3.1.2",
"socket.io": "^4.1.3"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.4",
"@types/node": "^16.4.12",
"@types/redis": "^2.8.31",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.7",
"typescript": "^4.2.4"
}
}