- /init-project로 팀 표준 워크플로우 적용 (CLAUDE.md, settings.json hooks, pre-commit) - Prettier + eslint-config-prettier 설치 및 ESLint 연동 - format/format:check npm 스크립트 추가 - vite-env.d.ts 추가 (import.meta.env 타입 정의) - pre-commit 차단 해제: GearDetection/BaseChart 타입 캐스팅 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "kcg-ai-monitoring",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"dev": "vite",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
|
|
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,json}\""
|
|
},
|
|
"dependencies": {
|
|
"@deck.gl/mapbox": "^9.2.11",
|
|
"class-variance-authority": "^0.7.1",
|
|
"deck.gl": "^9.2.11",
|
|
"echarts": "^6.0.0",
|
|
"i18next": "^26.0.3",
|
|
"lucide-react": "0.487.0",
|
|
"maplibre-gl": "^5.22.0",
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4",
|
|
"react-i18next": "^17.0.2",
|
|
"react-router-dom": "^7.12.0",
|
|
"zustand": "^5.0.12"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@tailwindcss/vite": "^4.2.2",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^6.0.1",
|
|
"eslint": "^10.2.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"eslint-plugin-react-refresh": "^0.5.2",
|
|
"globals": "^17.4.0",
|
|
"prettier": "^3.8.1",
|
|
"tailwindcss": "^4.2.2",
|
|
"typescript": "5.9",
|
|
"typescript-eslint": "^8.58.0",
|
|
"vite": "^8.0.3"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"react-dom": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|