9169165a03
* feat: generate new nx application * feat: add env variables & render a headline * feat: add netlify config * feat: add cypress projectId and delete unused files
31 lines
880 B
JSON
31 lines
880 B
JSON
{
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "apps/liquidity-provision-dashboard-e2e/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "@nrwl/cypress:cypress",
|
|
"options": {
|
|
"cypressConfig": "apps/liquidity-provision-dashboard-e2e/cypress.config.js",
|
|
"devServerTarget": "liquidity-provision-dashboard:serve"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "liquidity-provision-dashboard:serve:production"
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nrwl/linter:eslint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"apps/liquidity-provision-dashboard-e2e/**/*.{js,ts}"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"tags": [],
|
|
"implicitDependencies": ["liquidity-provision-dashboard"]
|
|
}
|