Files
br-acc/frontend/package.json
bruno cesar 127a3e6754 Phase 0: Foundation — project skeleton with all three packages
- git init, AGPL-3.0 license, .gitignore, .env.example, Makefile
- CLAUDE.md with neutrality rules, build commands, code style
- Custom agents: security-reviewer, code-reviewer, test-writer
- API: FastAPI skeleton with health check, meta endpoints, Neo4j driver
- ETL: Pipeline base class, CLI runner skeleton, splink + basedosdados deps
- Frontend: Vite + React 19 + React Router 7 + i18n (PT-BR/EN) + Zustand
- Infra: docker-compose.yml (Neo4j + API + Frontend), schema init.cypher
- All feedback loops pass: ruff, mypy, pytest, eslint, tsc, vitest

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 03:16:21 -03:00

41 lines
1017 B
JSON

{
"name": "icarus-frontend",
"private": true,
"version": "0.1.0",
"type": "module",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint src/",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"i18next": "^24.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-force-graph-2d": "^1.26.0",
"react-i18next": "^15.0.0",
"react-router": "^7.0.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.0.0",
"jsdom": "^25.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
}
}