Data_analysis_agent / frontend /package.json
rohitdeshmukh318's picture
Add type: module to package.json to fix vite build in Docker
c1bd687
{
"name": "data-analyst-agent-frontend",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext .ts,.tsx"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"plotly.js-dist-min": "^2.32.0",
"react-plotly.js": "^2.6.0",
"lucide-react": "^0.383.0",
"clsx": "^2.1.1",
"uuid": "^10.0.0",
"eventsource-parser": "^2.0.1"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@types/react-plotly.js": "^2.6.3",
"@vitejs/plugin-react": "^4.3.1",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"eslint": "^9.5.0",
"tailwindcss": "^3.4.4",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38"
}
}