-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 801 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 801 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
{
"name": "wsts",
"version": "1.0.3",
"main": "socket.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec ts-node src/socket.ts",
"prod": "node ./dist/socket.js",
"compile": "tsc",
"start": "tsc && pm2 start pm2.json"
},
"keywords": [],
"author": "maltsev.ga",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/redis": "^2.8.22",
"@types/node": "^14.0.11",
"@types/request-promise": "^4.1.46",
"@types/ws": "^7.2.5",
"nodemon": "^2.0.4",
"ts-node": " 8.10.2"
},
"dependencies": {
"dotenv": "^8.2.0",
"elastic-apm-node": "^3.6.1",
"redis": "^3.1.1",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"typescript": "^3.9.5",
"ws": "^7.3.0"
}
}