-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "websocket-peon",
"version": "0.0.1",
"description": "An applicable layer to your HTTP API which helps you turn it into a WebSocket endpoint",
"main": "src/socket-server.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"sserver:dev": "cp -r ./src/schemas ./dist/ && npx nodemon --config sserver.nodemon.json",
"server:dev": "cp -r ./src/schemas ./dist/ && npx nodemon --config server.nodemon.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shahabbasi/websocket-peon.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/shahabbasi/websocket-peon/issues"
},
"homepage": "https://github.com/shahabbasi/websocket-peon#readme",
"dependencies": {
"axios": "^1.3.0",
"dotenv": "^16.0.3",
"fastify": "^4.12.0",
"ioredis": "^5.3.0",
"jsonschema": "^1.4.1",
"winston": "^3.8.2",
"winston-sentry-log": "^1.0.26",
"ws": "^8.12.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}