Files
DashDescomplicar/package.json
ealmeida 11f9833aac feat(observabilidade): tabela worklog_comments + parser HTML + importer MCP
- Schema worklog_comments (id, discussion, parent, datas, staff, campos parseados em JSON)
- Parser HTML tolerante (h2/h3/h4) extrai title, task_ref, duration, work_items,
  files_modified, problems, patterns_text, actions
- Módulo worklog-import com paginação MCP get_discussion_comments
- Helper mcp-client.ts partilhado (gateway MCP JSON-RPC + SSE)
- Dep runtime: node-html-parser

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-23 03:07:09 +01:00

77 lines
2.2 KiB
JSON

{
"name": "dash-descomplicar",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"tsx watch api/server.ts\"",
"dev:api": "tsx watch api/server.ts",
"dev:ui": "vite",
"build": "tsc -b && vite build && tsc -p api/tsconfig.json",
"start": "node api/dist/server.js",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@types/pg": "^8.20.0",
"better-sqlite3": "^12.9.0",
"chokidar": "^5.0.0",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.19.2",
"express-openid-connect": "^2.19.4",
"express-rate-limit": "^8.2.1",
"framer-motion": "^12.30.1",
"googleapis": "^171.4.0",
"lucide-react": "^0.563.0",
"mysql2": "^3.11.5",
"node-html-parser": "^7.1.0",
"oidc-client-ts": "^3.0.1",
"pg": "^8.20.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-oidc-context": "^3.1.1",
"react-router-dom": "^7.13.0",
"recharts": "^3.7.0",
"ssh2": "^1.17.0",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^24.10.10",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/ssh2": "^1.15.5",
"@types/supertest": "^7.2.0",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.24",
"concurrently": "^9.1.2",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"jsdom": "^28.0.0",
"postcss": "^8.5.6",
"supertest": "^7.2.2",
"tailwindcss": "^4.1.18",
"tsx": "^4.19.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vitest": "^4.0.18"
}
}