-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.68 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.68 KB
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
78
79
80
81
82
83
84
85
86
87
{
"name": "gah-frontend",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --output-hashing=all",
"watch": "ng build --watch --configuration development",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand",
"e2e": "ng e2e",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"lint": "ng lint",
"prettier:check": "prettier --config .prettierrc --check \"src/**/*.{ts,css,html}\"",
"cypress-dashboard-run": "npx cypress run --browser chrome --record --key=e7548c32-2b6e-423e-b5af-7d4ed3e3f322"
},
"lint-staged": {
"src/**/*.{ts,css,html}": [
"npm run prettier:check"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:check",
"pre-push": "npm run test"
}
},
"private": true,
"dependencies": {
"@angular/animations": "^16.1.0",
"@angular/cdk": "^16.2.13",
"@angular/common": "^16.1.0",
"@angular/compiler": "^16.1.0",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.1.0",
"@angular/material": "^16.2.13",
"@angular/platform-browser": "^16.1.0",
"@angular/platform-browser-dynamic": "^16.1.0",
"@angular/router": "^16.1.0",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.1",
"cypress-image-compare": "^5.5.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jspdf-autotable": "^3.7.1",
"ngx-export-as": "^1.16.0",
"prettier-eslint": "^16.1.2",
"rxjs": "~7.8.0",
"sweetalert2": "^11.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.11",
"@angular-eslint/builder": "16.1.0",
"@angular-eslint/eslint-plugin": "16.1.0",
"@angular-eslint/eslint-plugin-template": "16.1.0",
"@angular-eslint/schematics": "16.1.0",
"@angular-eslint/template-parser": "16.1.0",
"@angular/cli": "~16.1.8",
"@angular/compiler-cli": "^16.1.0",
"@types/jasmine": "~4.3.0",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"cypress": "latest",
"cypress-mochawesome-reporter": "^3.8.0",
"cypress-xpath": "^2.0.1",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"jasmine-core": "~4.6.0",
"jest": "^29.7.0",
"jest-preset-angular": "^13.1.3",
"karma-coverage": "~2.2.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"schematics-scss-migrate": "^2.3.17",
"typescript": "~5.1.3"
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "<rootDir>/setupJest.ts"
}
}