-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.94 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
{
"name": "my-app",
"version": "0.0.0",
"license": "EUPL-1.2",
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"engines": {
"//": "Update @types/node to match the highest node version here",
"node": ">=20 <=22",
"pnpm": "^9"
},
"scripts": {
"start": "ng serve",
"build": "ng build",
"test:chrome": "ng test",
"lint": "npm-run-all lint:**",
"lint:js": "eslint --ext .js,.cjs,.mjs,.json,.html,.ts,.tsx --no-error-on-unmatched-pattern .",
"lint:prettier": "prettier --check .",
"lint-fix:js": "eslint --ext .js,.cjs,.mjs,.json,.html,.ts,.tsx --no-error-on-unmatched-pattern .",
"prettier": "prettier --write .",
"e2e": "ng e2e",
"test-update": "pnpm run --if-present lint && pnpm run --if-present test && pnpm run --if-present build && pnpm run --if-present lint-build && pnpm run --if-present test-build",
"update-patch": "npm-check-updates --configFileName .ncurc.patch.cjs",
"update-minor": "npm-check-updates --configFileName .ncurc.minor.cjs",
"update-major": "npm-check-updates --configFileName .ncurc.major.cjs"
},
"private": true,
"dependencies": {
"@angular/animations": "19.1.6",
"@angular/common": "19.1.6",
"@angular/compiler": "19.1.6",
"@angular/core": "19.1.6",
"@angular/forms": "19.1.6",
"@angular/platform-browser": "19.1.6",
"@angular/platform-browser-dynamic": "19.1.6",
"@angular/router": "19.1.6",
"rxjs": "7.8.1",
"tslib": "2.8.1",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.1.7",
"@angular-eslint/eslint-plugin": "19.1.0",
"@angular-eslint/eslint-plugin-template": "19.1.0",
"@angular-eslint/template-parser": "19.1.0",
"@angular/cli": "19.1.7",
"@angular/compiler-cli": "19.1.6",
"@ngx-translate/core": "16.0.4",
"@ngx-translate/http-loader": "16.0.1",
"@types/jasmine": "5.1.6",
"@types/node": "20.14.10",
"@typescript-eslint/eslint-plugin": "8.24.1",
"@typescript-eslint/parser": "8.24.1",
"@utrecht/component-library-angular": "2.1.0",
"@utrecht/component-library-css": "7.1.0",
"@utrecht/design-tokens": "2.5.0",
"@utrecht/web-component-library-angular": "2.1.0",
"@utrecht/web-component-library-stencil": "3.1.0",
"codelyzer": "6.0.2",
"eslint": "8.57.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prettier": "5.2.3",
"jasmine-core": "5.6.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"npm-check-updates": "17.1.14",
"npm-run-all": "4.1.5",
"prettier": "3.5.1",
"protractor": "7.0.0",
"ts-node": "10.9.2",
"typescript": "5.5.3"
}
}