-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "express-mvc-starter",
"version": "1.0.0",
"description": "This is a starter template for building MVC (Model-View-Controller) applications using Express.js.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently -n server -c #32a852 \"nodemon --exec babel-node index.js\"",
"dev": "concurrently -n server -c #32a852 \"nodemon --exec babel-node index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.24.6",
"@babel/node": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.2.0",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.13",
"nodemailer-express-handlebars": "^6.1.2"
},
"devDependencies": {
"nodemon": "^3.1.1"
}
}