- Fastify 5 앱 구성 (fromis_9 패턴) - MariaDB 연결 플러그인 및 자동 테이블 초기화 - carriers, parcels, tracking_events 테이블 생성 - 기본 택배사 8개 데이터 삽입 - Docker Compose에 백엔드 서비스 추가 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
358 B
JSON
17 lines
358 B
JSON
{
|
|
"name": "traeon-backend",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node src/server.js",
|
|
"dev": "node --watch src/server.js"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cors": "^11.2.0",
|
|
"dayjs": "^1.11.13",
|
|
"fastify": "^5.2.1",
|
|
"fastify-plugin": "^5.0.1",
|
|
"mysql2": "^3.12.0",
|
|
"node-cron": "^3.0.3"
|
|
}
|
|
}
|