ship-gis/package.json
htlee 3060973f92 chore: React 19 + Vite 7 + ESLint 9 + Zustand 5 업그레이드
- React 18.2 → 19.2.4, react-dom 19.2.4
- Vite 5.2.10 → 7.3.1, @vitejs/plugin-react 5.1.4
- ESLint 8.44 → 9.39.2 flat config, typescript-eslint 8.55.0
- eslint-plugin-react-hooks 7.0.1 (신규 규칙 warn 설정)
- Zustand 4.5 → 5.0.11 (shallow → useShallow 마이그레이션)
- sass 1.77.8 → 1.97.3
- sockjs-client, flatgeobuf 미사용 패키지 제거
- react-router-dom v7 future flag 적용
- vite.config.ts: defineConfig 함수형, build.target: es2022

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

51 lines
1.4 KiB
JSON

{
"name": "dark",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc -b && vite build",
"build:dev": "tsc -b && vite build --mode dev",
"build:qa": "tsc -b && vite build --mode qa",
"build:prod": "tsc -b && vite build",
"preview": "vite preview --port 3000",
"preview:dev": "vite preview --mode dev --port 3000",
"preview:qa": "vite preview --mode qa --port 3000",
"type-check": "tsc -b --noEmit",
"lint": "eslint src"
},
"dependencies": {
"@deck.gl/core": "^9.2.6",
"@deck.gl/extensions": "^9.2.6",
"@deck.gl/geo-layers": "^9.2.6",
"@deck.gl/layers": "^9.2.6",
"@deck.gl/mesh-layers": "^9.2.6",
"@stomp/stompjs": "^7.2.1",
"axios": "^1.4.0",
"dayjs": "^1.11.11",
"html2canvas": "^1.4.1",
"ol": "^9.2.4",
"ol-ext": "^4.0.10",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^6.30.3",
"zustand": "^5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.10.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"sass": "^1.97.3",
"typescript": "~5.7.2",
"typescript-eslint": "^8.55.0",
"vite": "^7.3.1"
}
}