-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.18 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
{
"name": "node-express-backend-template-for-intermediate",
"version": "1.0.0",
"description": "A Node.js and Expert.js backend template tailored for intermediate developers. It provides a structured foundation, essential tools, and best practices to help you build scalable and efficient applications with ease.",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --exitcrash index.js",
"staging_prep": "npm i && cross-env NODE_ENV=staging npx sequelize-cli db:migrate",
"staging": "cross-env NODE_ENV=staging node index.js",
"prod": "NODE_ENV=production node index.js"
},
"author": "Metta Surendhar",
"dependencies": {
"archiver": "^5.3.1",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"dotenv-flow": "^3.2.0",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"fast-csv": "^4.3.6",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"nodemailer": "^6.9.2",
"pg": "^8.10.0",
"qrcode": "^1.5.3",
"sequelize": "^6.31.1",
"winston": "^3.8.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^2.0.20",
"sequelize-cli": "^6.5.1"
}
}