-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.47 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.47 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
{
"name": "uds",
"version": "4.0.0",
"license": "BSD-3-Clause",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0 --port 9000 --proxy-config proxy.conf.json",
"build": "ng build --configuration production --subresource-integrity --output-hashing=none --aot --delete-output-path --deploy-url /uds/res/modern/ --base-href /uds/page && yarn postbuild",
"postbuild": "python3 toUDS.py",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.17",
"@angular/cdk": "^20.2.14",
"@angular/common": "^20.3.17",
"@angular/compiler": "^20.3.17",
"@angular/core": "^20.3.17",
"@angular/forms": "^20.3.17",
"@angular/material": "^20.2.14",
"@angular/platform-browser": "^20.3.17",
"@angular/platform-browser-dynamic": "^20.3.17",
"@angular/router": "^20.3.17",
"core-js": "^3.48.0",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "^0.16.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.3.19",
"@angular-devkit/core": "^20.3.19",
"@angular-devkit/schematics": "^20.3.19",
"@angular-eslint/builder": "^20.7.0",
"@angular-eslint/eslint-plugin": "^20.7.0",
"@angular-eslint/eslint-plugin-template": "^21.3.0",
"@angular-eslint/schematics": "20.7.0",
"@angular-eslint/template-parser": "^20.7.0",
"@angular/cli": "^20.3.19",
"@angular/compiler-cli": "^20.3.17",
"@angular/language-service": "^20.3.17",
"@types/cookieconsent": "^3.1.4",
"@types/jasmine": "~5.1.15",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^22.19.15",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@typescript-eslint/utils": "^8.57.0",
"codelyzer": "^6.0.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.5.5",
"jasmine-core": "^5.13.0",
"jasmine-spec-reporter": "^7.0.0",
"jsonc-parser": "^3.3.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.2.0",
"prettier": "^3.8.1",
"prettier-eslint": "^16.4.2",
"ts-node": "~10.9.2",
"typescript": "~5.9.3"
},
"packageManager": "yarn@4.4.1"
}