ship-gis/package.json
HeungTak Lee c123f234f2 chore: Vite 빌드 설정 및 프로젝트 구조 개선
- esbuild drop 옵션으로 빌드 시 console/debugger 자동 제거
- 개발용 폴더(publish, component/wrap) 빌드 시 제외
- 프록시 설정 추가 (signal-api, ship/image, tracks)
- index.html root 이동 (public/ → root)
- 의존성 업데이트

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-05 06:35:31 +09:00

42 lines
1.1 KiB
JSON

{
"name": "dark",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "vite build",
"build:dev": "vite build --mode dev",
"build:qa": "vite build --mode qa",
"build:prod": "vite build",
"preview": "vite preview --port 3000",
"preview:dev": "vite preview --mode dev --port 3000",
"preview:qa": "vite preview --mode qa --port 3000",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@deck.gl/core": "^9.2.6",
"@deck.gl/extensions": "^9.2.6",
"@deck.gl/layers": "^9.2.6",
"@stomp/stompjs": "^7.2.1",
"axios": "^1.4.0",
"dayjs": "^1.11.11",
"ol": "^9.2.4",
"ol-ext": "^4.0.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.30.3",
"sockjs-client": "^1.6.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.0.1",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"sass": "^1.77.8",
"vite": "^5.2.10"
}
}