-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.93 KB
/
package.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "banking-software-front-end",
"version": "0.0.0",
"scripts": {
"build": "ng build --localize --configuration=production",
"test:smoketests": "cypress run --env tags=\"@Smoketest\" --config baseUrl=http://app.testorbit.de:4200/ --reporter junit --reporter-options \"mochaFile=results/smoketests-[suiteName].xml\"",
"test:e2e": "cypress run --env tags=\"not @Smoketest\" --reporter junit --reporter-options \"mochaFile=results/e2e-[suiteName].xml\"",
"test:int": "cypress run --component --reporter junit --reporter-options \"mochaFile=results/integration-[suiteName].xml\"",
"start": "ng serve",
"clear-cypress-cache": "cypress cache clear",
"cypress:run": "ng run BankingSoftwareFrontEnd:cypress-run",
"cypress:open": "ng run BankingSoftwareFrontEnd:cypress-open"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.12",
"@angular/cdk": "^16.2.14",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/localize": "^16.2.12",
"@angular/material": "^16.2.14",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"@cucumber/cucumber": "^10.8.0",
"@cypress/code-coverage": "^3.12.39",
"@fortawesome/angular-fontawesome": "~0.13.0",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@ng-bootstrap/ng-bootstrap": "^15.1.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"axe-core": "^4.9.1",
"babel-loader": "^9.1.3",
"bootstrap": "^5.3.3",
"cypress": "^13.13.0",
"cypress-axe": "^1.5.0",
"enhanced-resolve": "3.3.0",
"eslint": "^8.57.0",
"font-awesome": "^4.7.0",
"js-cookie": "^3.0.5",
"rxjs": "~6.6.7",
"tslib": "^2.6.3",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^16.0.1",
"@angular-devkit/build-angular": "^16.2.14",
"@angular/cli": "^16.2.14",
"@angular/compiler-cli": "^16.2.12",
"@badeball/cypress-cucumber-preprocessor": "^19.2.0",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.1",
"@cypress/schematic": "2.5.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/jasmine": "~3.10.18",
"@types/jasminewd2": "~2.0.13",
"@types/js-cookie": "^3.0.6",
"@types/node": "^14.18.63",
"babel-plugin-istanbul": "^6.1.1",
"eslint-plugin-cypress": "^2.15.2",
"istanbul-lib-coverage": "^3.2.2",
"jasmine-core": "~3.99.1",
"jasmine-spec-reporter": "~5.0.2",
"nyc": "^15.1.0",
"ts-node": "~8.10.2",
"typescript": "~4.9.5",
"webpack": "^5.92.1"
},
"cypress-cucumber-preprocessor": {
"filterSpecs": true,
"omitFiltered": true
}
}