14a32bdc0d
- Unified monorepo with backend (Express), frontend (Next.js), and devops - Backend: ESLint, Prettier, Jest tests (3 passing), health endpoint, .env.example - Frontend: Fixed build errors, fixed all lint errors (0 remaining), tests passing - DevOps: Docker Compose with PostgreSQL, backend, frontend + healthchecks - CI/CD: 3 GitHub Actions workflows (backend, frontend, docker integration) - DX: Husky pre-commit hooks with smart change detection - Docs: Root README with architecture, CONTRIBUTING.md, PR template Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
24 lines
520 B
JSON
24 lines
520 B
JSON
{
|
|
"name": "scanner-worker",
|
|
"version": "1.0.0",
|
|
"main": "express-worker.ts",
|
|
"scripts": {
|
|
"start": "ts-node express-worker.ts"
|
|
},
|
|
"dependencies": {
|
|
"@supabase/supabase-js": "^2.50.0",
|
|
"chrome-launcher": "^0.15.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.5.0",
|
|
"express": "^4.18.2",
|
|
"lighthouse": "^12.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.19",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|