express helloworld

This commit is contained in:
Peace
2025-06-05 00:02:11 +09:00
parent 62d67e3bf7
commit 315bcb23a7
4 changed files with 173 additions and 0 deletions

19
letsStart/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"scripts": {
"build": "tsc",
"start:dev": "tsc-watch --onSuccess \"node dist/app.js\"",
"prestart": "npm run build",
"start": "node dist/app.js"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/node": "^15.3.0",
"prettier": "^2.2.1",
"tsc": "^2.0.3",
"tsc-watch": "^4.2.9",
"typescript": "^4.3.4"
},
"dependencies": {
"express": "^5.1.0"
}
}