-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.67 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
99
{
"name": "ngwr",
"version": "0.0.0-NOT-USED",
"private": true,
"scripts": {
"dev": "ng serve --o",
"test": "ng test",
"lint": "ng lint",
"release:patch": "tsx ./scripts/make-release.ts --release-as=patch",
"release:minor": "tsx ./scripts/make-release.ts --release-as=minor",
"release:major": "tsx ./scripts/make-release.ts --release-as=major",
"build:lib": "tsx ./scripts/build-lib.ts",
"build:showcase": "tsx ./scripts/build-showcase.ts",
"publish:lib": "tsx ./scripts/publish.ts"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20 <=22",
"pnpm": ">=9.7.0"
},
"pnpm": {
"allowedDeprecatedVersions": true
},
"dependencies": {
"@angular/animations": "^18.2.9",
"@angular/cdk": "^18.2.10",
"@angular/common": "^18.2.9",
"@angular/compiler": "^18.2.9",
"@angular/core": "^18.2.9",
"@angular/forms": "^18.2.9",
"@angular/platform-browser": "^18.2.9",
"@angular/platform-browser-dynamic": "^18.2.9",
"@angular/router": "^18.2.9",
"chalk": "^5.3.0",
"highlight.js": "^11.10.0",
"js-beautify": "^1.15.1",
"ngx-highlightjs": "^12.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.10",
"@angular-extensions/svg-icons-builder": "^11.0.0",
"@angular/cli": "^18.2.10",
"@angular/compiler-cli": "^18.2.9",
"@eslint/js": "^9.13.0",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/jasmine": "~5.1.0",
"@types/js-beautify": "^1.14.3",
"@types/node": "^22.1.0",
"angular-eslint": "18.4.0",
"commit-and-tag-version": "^12.4.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.3.1",
"eslint-plugin-prettier": "^5.2.1",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^18.2.1",
"prettier": "3.3.3",
"tsx": "^4.16.2",
"typescript": "~5.4.2",
"typescript-eslint": "8.12.2"
},
"commit-and-tag-version": {
"scripts": {
"postbump": "tsx ./scripts/postbump.ts"
},
"packageFiles": [
"projects/lib/package.json"
],
"bumpFiles": [
{
"filename": "projects/lib/package.json",
"type": "json"
}
],
"header": "# Changelog",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "deprecate",
"section": "Deprecated"
}
]
}
}