25 lines
934 B
JSON
25 lines
934 B
JSON
{
|
|
"name": "faceai",
|
|
"private": true,
|
|
"workspaces": [
|
|
"apps/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:processor": "npm run dev --workspace @regalami/faceai-processor",
|
|
"build": "npm run build --workspace @regalami/faceai-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"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.59.1",
|
|
"concurrently": "^9.1.2"
|
|
}
|
|
}
|