- Add config/package.json so `npm ci` installs into config/node_modules as intended by the build scripts (./config/node_modules/...) and vite.config.ts aliases, instead of hoisting to the repo root. - Remove stale root package-lock.json; the root is never an npm install target (scripts run from root but resolve modules from config/). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
18 lines
407 B
JSON
18 lines
407 B
JSON
{
|
|
"name": "forest-road-webapp",
|
|
"version": "0.1.0",
|
|
"description": "임도 설계 및 견적 자동화 프로그램 (프론트엔드)",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"maplibre-gl": "^5.24.0",
|
|
"three": "^0.185.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^26.1.0",
|
|
"@types/three": "^0.185.0",
|
|
"prettier": "^3.0.0",
|
|
"typescript": "^6.0.3",
|
|
"vite": "^8.1.0"
|
|
}
|
|
}
|