gc-wing/package.json
htlee 918b80e06a chore: 팀 프로젝트 워크플로우 세팅
- pnpm → npm 전환 (워크스페이스 유지)
- .claude/ 팀 규칙(5), 스킬(4), 설정, hooks 스크립트(3) 추가
- .githooks/ commit-msg, post-checkout, pre-commit 추가
- Nexus npm 프록시 설정 (.npmrc — URL만, 인증 제외)
- .editorconfig, .prettierrc, .node-version(24) 추가
- CLAUDE.md 프로젝트 설명서 생성
- Map3D.tsx 미사용 함수 제거 (getDeckShipAngle)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 22:18:40 +09:00

19 lines
584 B
JSON

{
"name": "wing-fleet-dashboard",
"private": true,
"workspaces": ["apps/*"],
"scripts": {
"dev": "npm run dev:web & npm run dev:api",
"dev:web": "npm -w @wing/web run dev",
"dev:api": "npm -w @wing/api run dev",
"build": "npm -w @wing/web run build && npm -w @wing/api run build",
"build:web": "npm -w @wing/web run build",
"build:api": "npm -w @wing/api run build",
"lint": "npm -w @wing/web run lint",
"prepare:data": "node scripts/prepare-zones.mjs && node scripts/prepare-legacy.mjs"
},
"devDependencies": {
"xlsx": "^0.18.5"
}
}