Regalamiunsorriso/faceai/package.json
MaddoScientisto a95ae56134
All checks were successful
Publish FaceAI Container / publish (push) Successful in 13m8s
feat(monitor-frontend): add FaceAI Audit Monitor application with Vue.js and Vite setup
- Created App.vue for the main application interface with localization support.
- Added main.js to bootstrap the Vue application.
- Introduced styles.css for application styling.
- Configured Vite for development and proxying API requests.
- Updated docker-compose files to include the new monitor service.
- Added Dockerfile for building the monitor frontend.
- Configured Nginx for serving the frontend and proxying API requests.
- Updated package.json and package-lock.json to include monitor-frontend workspace.
- Added initial SQLite database for audit monitoring.
2026-05-20 18:57:20 +02:00

34 lines
1.6 KiB
JSON

{
"name": "faceai",
"private": true,
"workspaces": [
"apps/frontend",
"apps/monitor-frontend",
"apps/backend",
"apps/processor"
],
"scripts": {
"dev": "concurrently \"npm:dev:backend\" \"npm:dev:frontend\"",
"dev:backend": "npm run dev --workspace @regalami/faceai-backend",
"dev:frontend": "npm run dev --workspace @regalami/faceai-frontend",
"dev:monitor": "npm run dev --workspace @regalami/faceai-monitor-frontend",
"dev:processor": "npm run dev --workspace @regalami/faceai-processor",
"compose:prod:up": "docker compose -f docker-compose.yml --env-file .env.production up -d",
"compose:prod:down": "docker compose -f docker-compose.yml --env-file .env.production down",
"compose:dev:up": "docker compose --env-file .env.development up --build",
"compose:dev:down": "docker compose --env-file .env.development down",
"build": "npm run build --workspace @regalami/faceai-frontend && npm run build --workspace @regalami/faceai-monitor-frontend && npm run build --workspace @regalami/faceai-backend",
"start": "npm run start --workspace @regalami/faceai-backend",
"start:processor": "npm run start --workspace @regalami/faceai-processor",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:install": "playwright install chromium",
"test:live": "playwright test -c playwright.live.config.js",
"test:live:headed": "playwright test -c playwright.live.config.js --headed",
"test:live:install": "playwright install chromium"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"concurrently": "^9.1.2"
}
}