-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1010 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1010 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
{
"name": "tswebsocketserver",
"version": "0.0.1",
"type": "module",
"description": "A minimal WebSocket server in TypeScript",
"main": "target/dist/index.js",
"scripts": {
"start": "node target/dist/index.js",
"build": "npm run lint && tsc",
"buildq": "tsc",
"lint": "npx eslint .",
"test": "jest"
},
"author": "",
"dependencies": {
"dotenv": "^16.4.7",
"onoff": "^6.0.3",
"uuid": "^11.0.5",
"winston": "^3.17.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@jest/globals": "^29.7.0",
"@stylistic/eslint-plugin": "^3.0.0",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.14",
"@types/node": "22.13.1",
"@types/winston": "^2.4.4",
"@types/ws": "^8.5.14",
"eslint": "^9.19.0",
"jest": "^29.7.0",
"jest-websocket-mock": "^2.5.0",
"source-map-support": "^0.5.21",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "8.23.0"
}
}