-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 882 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 882 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
36
37
{
"name": "pms-server",
"version": "1.0.0",
"description": "Backend server with node js, typescript and mongodb",
"main": "index.js",
"author": "Azam Dev",
"license": "MIT",
"scripts": {
"dev": "nodemon ./src/index.ts",
"clean": "rimraf build/",
"build": "yarn clean && tsc ",
"start": "node ./build/index.js"
},
"engines": {
"node": "18.12.1"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.1.3",
"express": "^4.18.2",
"helmet": "^7.0.0",
"mongodb": "^5.7.0",
"morgan": "^1.10.0",
"socket.io": "^4.7.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/morgan": "^1.9.4",
"@types/node": "^20.2.5",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}