This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.44 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
{
"name": "fyle-qbo-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run setup_env && ng build",
"test": "ng test",
"unit_test_ci": "npm run setup_env && ng test --watch=false --browsers=ChromeHeadlessCustom",
"setup_env": "node scripts/setup_env.js",
"lint": "ng lint",
"cypress_open": "cypress open -b chrome --e2e --env coverage=false",
"cypress_run": "npm run remove_existing_code_coverage && cypress run -b chrome --env coverage=true",
"setup_e2e_test": "npm run setup_env && node scripts/setup_e2e_test.js",
"remove_existing_code_coverage": "rm -rf .nyc_output cypress/coverage",
"cypress": "cypress",
"stop": "kill $(lsof -t -i:4200) || true"
},
"private": true,
"dependencies": {
"@angular-devkit/build-angular": "^15.2.1",
"@angular/animations": "^15.2.1",
"@angular/cdk": "^15.2.1",
"@angular/cli": "^15.2.1",
"@angular/common": "^15.2.1",
"@angular/compiler": "^15.2.1",
"@angular/compiler-cli": "^15.2.1",
"@angular/core": "^15.2.1",
"@angular/flex-layout": "^15.0.0-beta.42",
"@angular/forms": "^15.2.1",
"@angular/material": "^15.2.1",
"@angular/platform-browser": "^15.2.1",
"@angular/platform-browser-dynamic": "^15.2.1",
"@angular/router": "^15.2.1",
"@auth0/angular-jwt": "^5.0.2",
"@rxweb/reactive-form-validators": "^2.1.6",
"@sentry/angular": "^7.41.0",
"@sentry/tracing": "^7.41.0",
"rxjs": "~6.6.0",
"ts-cacheable": "1.0.6",
"tslib": "^2.2.0",
"typescript": "~4.9.5",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-eslint/builder": "^15.2.1",
"@angular-eslint/eslint-plugin": "^15.2.1",
"@angular-eslint/eslint-plugin-template": "^15.2.1",
"@angular-eslint/schematics": "^15.2.1",
"@angular-eslint/template-parser": "^15.2.1",
"@cypress/code-coverage": "^3.10.0",
"@types/jasmine": "~3.8.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"cypress": "10.3.0",
"eslint": "^7.26.0",
"jasmine-core": "~3.8.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ngx-build-plus": "^15.0.0"
},
"nyc": {
"report-dir": "cypress/coverage",
"reporter": [
"text-summary",
"html",
"json-summary"
]
}
}