- Vite 8 은 'local' 을 모드 이름으로 허용하지 않음(.env.local 접미사 충돌) - dev 스크립트를 'vite --mode local' → 'vite' 로 변경 (.env.local 은 자동 로드) - README 환경 변수/실행 안내를 실제 동작에 맞게 갱신 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "negosium-front",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"dev:dev": "vite --mode dev",
|
|
"build": "tsc -b && vite build --mode prod",
|
|
"build:dev": "tsc -b && vite build --mode dev",
|
|
"build:prod": "tsc -b && vite build --mode prod",
|
|
"preview": "vite preview",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"@tanstack/react-query": "^5.101.0",
|
|
"axios": "^1.18.0",
|
|
"react": "^19.2.6",
|
|
"react-dom": "^19.2.6",
|
|
"slate": "^0.124.1",
|
|
"slate-history": "^0.113.1",
|
|
"slate-react": "^0.124.2",
|
|
"zustand": "^5.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@tailwindcss/vite": "^4.3.1",
|
|
"@types/node": "^24.12.3",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^6.0.1",
|
|
"eslint": "^10.3.0",
|
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
"eslint-plugin-react-refresh": "^0.5.2",
|
|
"globals": "^17.6.0",
|
|
"tailwindcss": "^4.3.1",
|
|
"typescript": "~6.0.2",
|
|
"typescript-eslint": "^8.59.2",
|
|
"vite": "^8.0.12"
|
|
}
|
|
}
|