@kwalox/create-node-app
Version:
CLI command to bootstrap Node project
35 lines (34 loc) • 821 B
JSON
{
"name": "<project-name>",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"dev": "nodemon -L src/index.ts",
"compile": "tsc",
"build": "npm run clean && npm run compile",
"production": "node dist/index.js",
"linter": "eslint \"**/*.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"nodemon": "^2.0.16",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"dependencies": {
"@types/express": "^4.17.13",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"helmet": "^5.1.0"
}
}