mirror of
https://github.com/20kaushik02/express-sequelize-backend-template.git
synced 2025-12-06 07:34:06 +00:00
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "backend-template",
|
|
"version": "1.3.1",
|
|
"description": "Template for back-end server using Express and Sequelize.",
|
|
"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"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://gitlab.com/ctf-tech-2023/backend-template.git"
|
|
},
|
|
"author": "Kaushik Ravishankar <rknarayan02@gmail.com>",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://gitlab.com/ctf-tech-2023/backend-template/issues"
|
|
},
|
|
"homepage": "https://gitlab.com/ctf-tech-2023/backend-template#readme",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"cross-fetch": "^3.1.5",
|
|
"dotenv-flow": "^3.2.0",
|
|
"express": "^4.18.1",
|
|
"express-validator": "^6.14.2",
|
|
"fast-csv": "^4.3.6",
|
|
"helmet": "^6.0.0",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"nodemailer": "^6.8.0",
|
|
"pg": "^8.8.0",
|
|
"sequelize": "^6.24.0",
|
|
"winston": "^3.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"cross-env": "^7.0.3",
|
|
"nodemon": "^2.0.20",
|
|
"sequelize-cli": "^6.5.1"
|
|
}
|
|
}
|