Files
NestJS_Basic/catDataMocking/package.json

23 lines
497 B
JSON
Raw Normal View History

2025-06-05 00:39:03 +09:00
{
"scripts": {
"build": "tsc",
"start:dev": "tsc-watch --onSuccess \"node dist/app.js\"",
"prestart": "npm run build",
"start": "node dist/app.js"
},
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
2025-06-05 17:03:26 +09:00
"@types/node": "^22.15.29",
2025-06-05 00:39:03 +09:00
"prettier": "^2.2.1",
"tsc": "^2.0.3",
"tsc-watch": "^4.2.9",
2025-06-05 17:03:26 +09:00
"typescript": "^4.9.5"
2025-06-05 00:39:03 +09:00
},
"dependencies": {
2025-06-05 17:03:26 +09:00
"@types/webgl2": "^0.0.11",
2025-06-05 00:39:03 +09:00
"cors": "^2.8.5",
"express": "^5.1.0"
}
}