backend-setup-tool
Version:
A powerful CLI tool to instantly scaffold a clean and scalable Node.js/Express.js backend for SQL or NoSQL projects.
27 lines • 701 B
JSON
{
"name": "your-app-name",
"version": "1.0.0",
"description": "This backend starter for your app",
"main": "app.js",
"type": "module",
"scripts": {
"start": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^2.5.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"nodemon": "^3.1.9",
"pg": "^8.13.1",
"sequelize": "^6.6.5",
"uuid": "^8.3.2"
}
}