-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 901 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 901 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
{
"name": "echo-ws",
"main": "src/index.js",
"description": "websocket echo server",
"author": {
"name": "Javier Carrillo Milla",
"email": "[email protected]"
},
"scripts": {
"dev": "rm -rf dist && tsc-watch --project tsconfig.compile.json --onSuccess 'node dist/index.js'",
"start": "dist/index.js",
"build": "rm -rf dist/ && mkdir dist && tsc --project tsconfig.compile.json",
"test:watch": "jest --watchAll"
},
"dependencies": {
"ws": "^8.8.1"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"jest": "^29.0.3",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.3"
}
}