Files
cloudlense/package.json
T
Dennis 50e25e3ee8 refactor: flatten monorepo structure to backend/ frontend/ devops/
Rename subdirectories for a cleaner single-repo layout:
- website-monitoring-backend/  → backend/
- website-monitoring-frontend/ → frontend/
- website-monitoring-devops/   → devops/

Update all references in package.json scripts, CI workflows,
docker-compose, pre-commit hooks, and documentation.

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

34 lines
1.4 KiB
JSON

{
"name": "website-monitoring",
"version": "1.0.0",
"private": true,
"description": "Full-stack website monitoring platform with Lighthouse performance auditing",
"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": ">=18.0.0"
}
}