-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 KB
/
package.json
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
38
39
40
41
42
43
44
45
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"author": "Kaushal Mehta",
"license": "MIT",
"scripts": {
"start:dev": "nodemon ./dist/server.js",
"start:prod": "node ./dist/server.js",
"watch:ts": "tsc -w"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.4.1",
"@types/html-to-text": "^8.1.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.5",
"@types/socket.io": "^3.0.2",
"@types/streamifier": "^0.1.0",
"dotenv": "^16.0.2",
"nodemon": "^2.0.19",
"typescript": "^4.8.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.31.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"html-to-text": "^8.2.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.7.8",
"socket.io": "^4.5.2",
"streamifier": "^0.1.1"
}
}