-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathproject.json
More file actions
31 lines (31 loc) · 878 Bytes
/
project.json
File metadata and controls
31 lines (31 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "registry-viewer-e2e",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/registry-viewer-e2e/src",
"projectType": "application",
"tags": [],
"implicitDependencies": ["registry-viewer"],
"targets": {
"e2e": {
"executor": "@nx/cypress:cypress",
"dependsOn": ["^build"],
"options": {
"cypressConfig": "apps/registry-viewer-e2e/cypress.config.ts",
"devServerTarget": "registry-viewer:serve:development",
"testingType": "e2e"
},
"configurations": {
"production": {
"devServerTarget": "registry-viewer:serve:production"
}
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/registry-viewer-e2e/**/*.{js,ts}"]
}
}
}
}