-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 851 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 851 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
{
"name": "meet-backend",
"version": "1.0.0",
"description": "Meet backend using socket.IO",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon index.ts",
"start": "npm run build && node lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Prince Thomas",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.4.0",
"mongoose": "^5.12.3",
"socket.io": "^4.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.2"
}
}