create-node-template
Version:
Create node.js or express boilerplate with one command
30 lines (29 loc) • 705 B
JSON
{
"name": "nodejs-express-boilerplate-basic",
"version": "0.1.0",
"main": "server.ts",
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsc && tsc-alias",
"build:watch": "tsc -w & tsc-alias --watch",
"dev": "tsx watch src/server.ts",
"dev:start": "tsx dist/server.js",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.28",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"tsc-alias": "^1.8.8",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"typescript-eslint": "^7.3.1"
},
"dependencies": {
"axios": "^1.6.8",
"express": "^4.18.3"
}
}