create-nodejs-express-project
Version:
A CLI for generating a new express project with the MVC structure
20 lines (19 loc) • 366 B
JSON
{
"name": "back-end",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"start": "nodemon index.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.0",
"nodemon": "^2.0.19"
}
}