-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.12 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.12 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "s-libs",
"version": "20.2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"build-libs": "tsx scripts/build-libs",
"dtslint": "dtslint --expectOnly --localTs node_modules/typescript/lib",
"prettier-lint": "prettier --check \"**/*.{html,js,json,md,scss,ts,yml}\"",
"prettier-all": "prettier --write \"**/*.{html,js,json,md,scss,ts,yml}\"",
"docs": "tsx scripts/docs-libs",
"git-publish": "standard-version --commit-all",
"npm-publish": "tsx scripts/publish-libs",
"calc-micro-dash-sizes": "cd projects/micro-dash-sizes && tsx calc-sizes"
},
"dependencies": {
"@angular/cdk": "20.0",
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/material": "20.0",
"@angular/platform-browser": "^20.0.0",
"@angular/router": "^20.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^20.0.1",
"@angular/cli": "^20.0.1",
"@angular/compiler-cli": "^20.0.0",
"@types/jasmine": "~5.1.0",
"@types/lodash-es": "^4.17.11",
"@types/node": "^22.10.2",
"angular-eslint": "20.0.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"expect-type": "^1.1.0",
"glob": "^11.0.0",
"jasmine-core": "~5.7.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",
"lodash-es": "^4.17.21",
"ng-packagr": "^20.0.0",
"prettier": "^3.0.3",
"sassdoc": "^2.7.4",
"source-map-explorer": "^2.5.3",
"standard-version": "^9.5.0",
"tsx": "^4.20.3",
"typedoc": "^0.28.5",
"typescript": "~5.8.2",
"typescript-eslint": "8.33.1"
},
"standard-version": {
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "projects/app-state/package.json",
"type": "json"
},
{
"filename": "projects/eslint-config-ng/package.json",
"type": "json"
},
{
"filename": "projects/js-core/package.json",
"type": "json"
},
{
"filename": "projects/micro-dash/package.json",
"type": "json"
},
{
"filename": "projects/ng-app-state/package.json",
"type": "json"
},
{
"filename": "projects/ng-core/package.json",
"type": "json"
},
{
"filename": "projects/ng-dev/package.json",
"type": "json"
},
{
"filename": "projects/ng-mat-core/package.json",
"type": "json"
},
{
"filename": "projects/signal-store/package.json",
"type": "json"
},
{
"filename": "projects/rxjs-core/package.json",
"type": "json"
}
],
"scripts": {
"postbump": "tsx scripts/bump-peer-dependencies",
"postchangelog": "prettier --write CHANGELOG.md"
}
}
}