kickstart-express
Version:
A powerful CLI tool to quickly scaffold Express.js projects with modern tooling and best practices
25 lines (24 loc) • 558 B
JSON
{
"name": "js",
"version": "1.0.0",
"description": "Express.js API built with JavaScript",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index.js",
"start": "node index.js"
},
"keywords": ["express", "javascript", "api", "server"],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.10.0",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}