-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.16 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "cloud-portal",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"http-server": "angular-http-server --silent --path dist/cloud-portal/en-CH -p 4200",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage",
"lint": "ng lint",
"e2e-dev": "ng e2e --configuration=development",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"generate-favicon": "pwa-asset-generator ./src/assets/logo_slim.svg ./src/assets/icons --opaque false --scrape true --manifest ./src/manifest.webmanifest --index ./src/index.html --favicon --mstile --icon-only",
"prettier": "prettier --write ."
},
"private": true,
"dependencies": {
"@angular/animations": "16.2.4",
"@angular/cdk": "16.2.2",
"@angular/common": "16.2.4",
"@angular/compiler": "16.2.4",
"@angular/core": "16.2.4",
"@angular/forms": "16.2.4",
"@angular/platform-browser": "16.2.4",
"@angular/platform-browser-dynamic": "16.2.4",
"@angular/router": "16.2.4",
"@fortawesome/angular-fontawesome": "0.13.0",
"@fortawesome/fontawesome-svg-core": "6.4.2",
"@fortawesome/free-solid-svg-icons": "6.4.2",
"@ngrx/component": "16.2.0",
"@ngrx/data": "16.2.0",
"@ngrx/effects": "16.2.0",
"@ngrx/router-store": "16.2.0",
"@ngrx/store": "16.2.0",
"@ngrx/store-devtools": "16.2.0",
"@sentry/angular-ivy": "7.68.0",
"@sindresorhus/slugify": "2.2.1",
"angular-oauth2-oidc": "15.0.1",
"primeflex": "3.3.1",
"primeicons": "6.0.1",
"primeng": "16.3.1",
"rxjs": "7.8.1",
"ts-md5": "1.3.1",
"tslib": "2.6.2",
"uuid": "9.0.0",
"zone.js": "0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.1",
"@angular-eslint/builder": "16.1.2",
"@angular-eslint/eslint-plugin": "16.1.2",
"@angular-eslint/eslint-plugin-template": "16.1.2",
"@angular-eslint/schematics": "16.1.2",
"@angular-eslint/template-parser": "16.1.2",
"@angular/cli": "16.2.1",
"@angular/compiler-cli": "16.2.4",
"@angular/localize": "16.2.4",
"@cypress/schematic": "2.5.0",
"@ngrx/schematics": "16.2.0",
"@types/jest": "29.5.4",
"@types/node": "20.5.9",
"@types/uuid": "9.0.3",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"angular-http-server": "1.12.0",
"cypress": "13.1.0",
"cypress-terminal-report": "5.3.3",
"eslint": "8.48.0",
"eslint-plugin-change-detection-strategy": "0.1.3",
"eslint-plugin-ngrx": "2.1.4",
"eslint-plugin-prettier": "5.0.0",
"jest": "29.6.4",
"jest-preset-angular": "13.1.1",
"prettier": "3.0.3",
"pwa-asset-generator": "6.3.1",
"typescript": "5.1.6"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setupJest.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/",
"<rootDir>/cypress/"
],
"globals": {
"ts-jest": {
"tsconfig": "<rootDir>/tsconfig.spec.json",
"stringifyContentPathRegex": "\\.html$"
}
}
}
}