-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 743 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 743 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
{
"name": "chatappserver",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"build": "tsc",
"watch-ts": "tsc -w",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript, Node\" -c \"yello.bold, cyan.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.13",
"@types/socket.io": "^3.0.2",
"@types/ws": "^8.2.2",
"concurrently": "^7.0.0",
"express": "^4.17.2",
"moment": "^2.29.1",
"nodemon": "^2.0.15",
"socket.io": "^4.4.0",
"uuid": "^8.3.2",
"ws": "^8.2.3"
}
}