22 lines
508 B
JSON
22 lines
508 B
JSON
{
|
|
"name": "sample",
|
|
"version": "0.1.0",
|
|
"description": "사내 Node 샘플 — 로컬 node 실행 + Kubero(buildpack) 배포",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "node --watch src/server.js",
|
|
"start": "node index.js",
|
|
"db:check": "node scripts/check-db.js",
|
|
"minio:check": "node scripts/check-minio.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.700.0",
|
|
"express": "^4.21.2",
|
|
"pg": "^8.13.1"
|
|
}
|
|
}
|