-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 840 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 840 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
{
"name": "node-chat-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsc && node ./dist/server.js",
"watch": "tsc && nodemon ./dist/server.js",
"test": "mocha -r ts-node/register server/**/*.test.ts",
"test-watch": "nodemon --exec 'npm test'"
},
"engines": {
"node": "8.15.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/expect": "^1.20.4",
"@types/mocha": "^5.2.6",
"expect": "^24.1.0",
"mocha": "^6.0.0",
"nodemon": "^1.18.10",
"ts-node": "^8.0.2"
},
"dependencies": {
"@types/express": "^4.16.1",
"@types/moment": "^2.13.0",
"@types/node": "^11.9.4",
"@types/socket.io": "^2.1.2",
"express": "^4.16.4",
"moment": "^2.24.0",
"socket.io": "^2.2.0",
"typescript": "^3.3.3"
}
}