2022-02-15 14:12:27 +00:00
|
|
|
{
|
2023-07-04 11:01:25 +00:00
|
|
|
"name": "explorer-e2e",
|
2022-08-31 04:35:46 +00:00
|
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
2022-02-15 14:12:27 +00:00
|
|
|
"sourceRoot": "apps/explorer-e2e/src",
|
|
|
|
"projectType": "application",
|
|
|
|
"targets": {
|
|
|
|
"e2e": {
|
2023-07-04 11:01:25 +00:00
|
|
|
"executor": "@nx/cypress:cypress",
|
2022-02-15 14:12:27 +00:00
|
|
|
"options": {
|
2022-06-28 18:07:31 +00:00
|
|
|
"cypressConfig": "apps/explorer-e2e/cypress.config.js",
|
2022-02-15 14:12:27 +00:00
|
|
|
"devServerTarget": "explorer:serve"
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"devServerTarget": "explorer:serve:production"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint": {
|
2023-11-14 14:25:29 +00:00
|
|
|
"executor": "@nx/eslint:lint",
|
2022-02-15 14:12:27 +00:00
|
|
|
"outputs": ["{options.outputFile}"],
|
|
|
|
"options": {
|
|
|
|
"lintFilePatterns": ["apps/explorer-e2e/**/*.{js,ts}"]
|
|
|
|
}
|
2022-08-26 16:41:47 +00:00
|
|
|
},
|
|
|
|
"build": {
|
2023-07-04 11:01:25 +00:00
|
|
|
"executor": "nx:run-commands",
|
2022-08-26 16:41:47 +00:00
|
|
|
"outputs": [],
|
|
|
|
"options": {
|
|
|
|
"command": "yarn tsc --project ./apps/explorer-e2e/"
|
|
|
|
}
|
2022-02-15 14:12:27 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"tags": [],
|
|
|
|
"implicitDependencies": ["explorer"]
|
|
|
|
}
|