Files
ComFi/package.json
MMrp89 b91517dea2 feat: Optimize build and dependencies
Introduce manual chunking for vendor dependencies to improve load times.
Update Node.js engine requirement to >=18.0.0.
Refactor `AccountsReceivableView` by removing commented-out code and unnecessary variables.
Add a development server port configuration.
2026-02-10 01:34:52 -03:00

33 lines
743 B
JSON

{
"name": "comfi-management-system",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"start": "node server.js"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@google/genai": "^1.39.0",
"express": "^4.21.1",
"lucide-react": "^0.454.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^2.13.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}