express-hale
Version:
🚀 Interactive Express.js scaffold CLI with comprehensive error handling, TypeScript/JavaScript, database integrations, Git Flow, and development tools
97 lines (96 loc) • 2.34 kB
JSON
{
"name": "express-hale",
"version": "1.4.8",
"description": "🚀 Interactive Express.js scaffold CLI with comprehensive error handling, TypeScript/JavaScript, database integrations, Git Flow, and development tools",
"main": "dist/cli/index.js",
"bin": {
"express-hale": "./dist/cli/index.js",
"create-express-app": "./dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"start": "node dist/cli/index.js",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write src",
"prepublishOnly": "npm run build && npm test",
"prepack": "npm run build"
},
"packageManager": "pnpm@8.0.0",
"keywords": [
"express",
"cli",
"scaffold",
"generator",
"typescript",
"javascript",
"mongodb",
"mysql",
"redis",
"git-flow",
"eslint",
"prettier",
"jest",
"docker",
"template",
"boilerplate",
"starter",
"nodejs",
"error-handling",
"error-boundary",
"monitoring",
"graceful-shutdown"
],
"author": {
"name": "Gaowenhan",
"email": "liujianlong323@gmail.com",
"url": "https://github.com/GaoWenHan"
},
"license": "MIT",
"homepage": "https://github.com/GaoWenHan/Express-Hale#readme",
"bugs": {
"url": "https://github.com/GaoWenHan/Express-Hale/issues"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"inquirer": "^9.2.12",
"ora": "^5.4.1",
"template-string": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.4.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GaoWenHan/Express-Hale.git"
},
"publishConfig": {
"access": "public"
}
}