Files
Clément SAILLANT 5efb380da5 feat: automate yiacad PR review lane (#18)
* feat: automate yiacad pr review lane

* fix: stabilize yiacad review and spec gates

* fix: scope kicad exports to repo hardware

* fix: ignore kicad block library sources in exports

* feat: Add infra VPS monitoring runbook and healthcheck scripts

- Created INFRA_VPS_RUNBOOK_2026.md detailing operational procedures for monitoring VPS services.
- Added infra_vps_healthcheck.sh script for automated health checks on DNS, TLS, TCP, and HTTP for VPS services.
- Introduced infra_vps_security_audit.sh for non-intrusive security checks on external VPS services.
- Established JSON schema for infra VPS inventory in infra_vps.schema.json.
- Developed integration for runtime status reporting in the Next.js API route.
- Implemented Playwright tests for smoke testing the application and ensuring core functionalities.
- Updated Makefile for development dependencies and testing commands.
- Created various test files for unit and end-to-end testing across different components.

* feat(agentics): update mesh agents, gates, prompts, and workflows
2026-03-29 17:14:16 +02:00

42 lines
1.1 KiB
JSON

{
"name": "yiacad-web",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"dev:realtime": "node ./realtime/server.mjs",
"worker:eda": "node ./workers/eda-worker.mjs",
"vendor:kicanvas": "node ./scripts/vendor-kicanvas.mjs",
"test:e2e": "playwright test",
"test:e2e:smoke": "playwright test e2e/smoke.spec.ts"
},
"dependencies": {
"@excalidraw/excalidraw": "0.18.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/ws": "^8.18.1",
"@y/websocket-server": "^0.1.5",
"bullmq": "5.71.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"graphql": "16.13.1",
"graphql-yoga": "5.18.1",
"next": "14.2.35",
"react": "18.3.1",
"react-dom": "18.3.1",
"ws": "8.20.0",
"y-websocket": "3.0.0",
"yjs": "13.6.30"
},
"devDependencies": {
"@playwright/test": "1.41.2",
"@types/node": "^20.17.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"typescript": "5.9.3"
}
}