b118a58b8f
- dev 스크립트(nodemon)와 dotenv 의존성/로드 코드 제거 (설정은 compose 환경변수로만 주입) - backend/.env.example 삭제 - 환경변수 템플릿은 루트 .env.example로 일원화 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
32 lines
735 B
JSON
32 lines
735 B
JSON
{
|
|
"name": "report-backend",
|
|
"version": "1.0.0",
|
|
"description": "Business Report Dashboad Backend",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"build": "node build.js"
|
|
},
|
|
"dependencies": {
|
|
"@google/generative-ai": "^0.24.1",
|
|
"bcryptjs": "^3.0.3",
|
|
"body-parser": "^1.20.2",
|
|
"cookie-parser": "^1.4.7",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.18.2",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"multer": "^2.1.1",
|
|
"openai": "^6.32.0",
|
|
"pg": "^8.11.3",
|
|
"pg-hstore": "^2.3.4",
|
|
"pdfkit": "^0.18.0",
|
|
"sequelize": "^6.37.1",
|
|
"swagger-jsdoc": "^6.3.0",
|
|
"swagger-ui-express": "^5.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.28.1",
|
|
"fs-extra": "^11.3.6"
|
|
}
|
|
}
|