UNPKG

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.

25 lines (24 loc) 553 B
{ "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", "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", "mongoose": "^8.13.0" } }