project.json 691 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "labelstudio-e2e",
  3. "$schema": "../../node_modules/nx/schemas/project-schema.json",
  4. "sourceRoot": "apps/labelstudio-e2e/src",
  5. "projectType": "application",
  6. "targets": {
  7. "e2e": {
  8. "executor": "@nx/cypress:cypress",
  9. "options": {
  10. "cypressConfig": "apps/labelstudio-e2e/cypress.config.ts",
  11. "baseUrl": "http://localhost:8080/",
  12. "testingType": "e2e"
  13. },
  14. "configurations": {
  15. "production": {
  16. "devServerTarget": "labelstudio:serve:production"
  17. },
  18. "ci": {
  19. "devServerTarget": "labelstudio:serve-static"
  20. }
  21. }
  22. }
  23. },
  24. "tags": [],
  25. "implicitDependencies": ["labelstudio"]
  26. }