nx/nx-dev/nx-dev-e2e/project.json

26 lines
637 B
JSON

{
"name": "nx-dev-e2e",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "nx-dev/nx-dev-e2e/src",
"projectType": "application",
"targets": {
"e2e": {
"dependsOn": [
{
"target": "build-base",
"projects": "dependencies"
}
],
"executor": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "nx-dev/nx-dev-e2e/cypress.config.ts",
"devServerTarget": "nx-dev:serve:production",
"testingType": "e2e"
}
},
"lint": {}
},
"tags": ["scope:nx-dev", "type:e2e"],
"implicitDependencies": ["nx-dev"]
}