-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 760 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 760 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
{
"name": "newchat-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prod": "npm i && tsc && node --respawn --transpile-only ./src/server.ts",
"dev": "ts-node-dev --respawn --transpile-only ./src/server.ts",
"start": "tsc && node ./dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.8",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.15",
"@types/socket.io": "^2.1.10",
"@types/winston": "^2.4.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"jest": "^26.6.1",
"socket.io": "^2.3.0",
"typescript": "^3.9.7",
"winston": "^3.3.3"
},
"devDependencies": {
"ts-node-dev": "^1.0.0-pre.56"
}
}