create-mvc-backend-app
Version:
A complete backend API template following MVC architecture with Node.js, Express.js, MongoDB, and JWT authentication
66 lines (65 loc) • 1.44 kB
JSON
{
"name": "create-mvc-backend-app",
"version": "1.0.6-beta",
"description": "A complete backend API template following MVC architecture with Node.js, Express.js, MongoDB, and JWT authentication",
"main": "server.js",
"bin": {
"create-mvc-backend-app": "./bin/create-backend.js"
},
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nodejs",
"express",
"mongodb",
"mongoose",
"mvc",
"authentication",
"jwt",
"backend",
"api",
"template",
"boilerplate",
"rest-api",
"cookie-auth",
"bcrypt",
"cors"
],
"author": "developerChetram",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DeveloperChetram/backend-setup"
},
"bugs": {
"url": "https://github.com/DeveloperChetram/backend-setup/issues"
},
"homepage": "https://github.com/DeveloperChetram/backend-setup#readme",
"files": [
"src/",
"bin/",
"server.js",
"env.example",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}