7266ac9b37
* Initial commit after nx create * Add .env files * Add working commit for poc * Make deal-ticket-manager.tsx accept children as props and export more components to be consumed by external apps * Add stepper component to simple trading app * Add basic prototype for simple trading app with stepper component * Remove unnecessary flags and env variables * Change simple trading app port * Refactor deal ticket container to be more dry * Refactor deal ticket to be more dry * Refactor app loader, remove tendermint socket and change providers for App.tsx in simple trading app * Remove example cypress files and change config * Fix linting issues
29 lines
764 B
JSON
29 lines
764 B
JSON
{
|
|
"root": "apps/simple-trading-app-e2e",
|
|
"sourceRoot": "apps/simple-trading-app-e2e/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "@nrwl/cypress:cypress",
|
|
"options": {
|
|
"cypressConfig": "apps/simple-trading-app-e2e/cypress.json",
|
|
"devServerTarget": "simple-trading-app:serve"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "simple-trading-app:serve:production"
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nrwl/linter:eslint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["apps/simple-trading-app-e2e/**/*.{js,ts}"]
|
|
}
|
|
}
|
|
},
|
|
"tags": [],
|
|
"implicitDependencies": ["simple-trading-app"]
|
|
}
|