Files
cloudlense/package.json
T
Dennis 5ebea6b0d6 fix: resolve CI failures — Node 20+, exclude scanner-worker from build
- Update GitHub Actions workflows to Node 20/22 (ESLint 10 requires Node 20+)
- Exclude scanner-worker/ from frontend tsconfig and .dockerignore
- Update engines to require Node >= 20

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-07 01:15:13 +01:00

34 lines
1.4 KiB
JSON

{
"name": "cloudlense",
"version": "1.0.0",
"private": true,
"description": "CloudLense — Full-stack website monitoring & performance auditing platform",
"scripts": {
"setup": "bash dev-setup.sh",
"start": "cd frontend && supabase start && cd .. && concurrently -n db,backend,frontend -c blue,yellow,green \"echo Supabase ready\" \"npm run dev:backend\" \"npm run dev:frontend\"",
"stop": "cd frontend && supabase stop && echo '✅ All services stopped'",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"dev": "concurrently -n backend,frontend -c yellow,green \"npm run dev:backend\" \"npm run dev:frontend\"",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"build": "npm run build:backend && npm run build:frontend",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"test": "npm run test:backend && npm run test:frontend",
"lint:backend": "cd backend && npm run lint",
"lint:frontend": "cd frontend && npm run lint",
"lint": "npm run lint:backend && npm run lint:frontend",
"docker:up": "docker compose -f devops/docker-compose.yml up --build",
"docker:down": "docker compose -f devops/docker-compose.yml down",
"prepare": "husky"
},
"devDependencies": {
"concurrently": "^9.1.0",
"husky": "^9.1.0"
},
"engines": {
"node": ">=20.0.0"
}
}