Files
NestJS_Basic/letsStart/package.json

22 lines
463 B
JSON
Raw Normal View History

2025-06-05 00:02:11 +09:00
{
"scripts": {
"build": "tsc",
"start:dev": "tsc-watch --onSuccess \"node dist/app.js\"",
"prestart": "npm run build",
"start": "node dist/app.js"
},
"devDependencies": {
2025-06-05 00:39:03 +09:00
"@types/cors": "^2.8.18",
2025-06-05 00:02:11 +09:00
"@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": {
2025-06-05 00:39:03 +09:00
"cors": "^2.8.5",
2025-06-05 00:02:11 +09:00
"express": "^5.1.0"
}
}