{ "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 ", "license": "ISC", "bugs": { "url": "https://gitlab.com/ctf-tech-2023/backend-template/issues" }, "homepage": "https://gitlab.com/ctf-tech-2023/backend-template#readme", "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" } }