-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
120 lines (120 loc) · 3.47 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "s-libs",
"version": "18.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"build-libs": "npm run ts-node -- 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": "npm run ts-node -- scripts/docs-libs",
"git-publish": "standard-version --commit-all",
"npm-publish": "npm run ts-node -- scripts/publish-libs",
"calc-micro-dash-sizes": "cd projects/micro-dash-sizes && ts-node --project tsconfig.app.json -O \"{ \\\"module\\\": \\\"CommonJS\\\" }\" calc-sizes",
"ts-node": "ts-node --project scripts/tsconfig.json"
},
"dependencies": {
"@angular/animations": "^18.0.0",
"@angular/cdk": "18.0",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/forms": "^18.0.0",
"@angular/material": "18.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/router": "^18.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.2",
"@angular/cli": "^18.0.2",
"@angular/compiler-cli": "^18.0.0",
"@types/jasmine": "~5.1.0",
"@types/lodash-es": "^4.17.11",
"@types/node": "^20.9.0",
"angular-eslint": "18.0.1",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.0.0",
"expect-type": "^0.19.0",
"glob": "^10.2.2",
"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",
"lodash-es": "^4.17.21",
"ng-packagr": "^18.0.0",
"prettier": "^3.0.3",
"sassdoc": "^2.7.4",
"source-map-explorer": "^2.5.3",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "~5.4.2",
"typescript-eslint": "8.0.0-alpha.20"
},
"prettier": {
"trailingComma": "all"
},
"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": "npm run ts-node -- scripts/bump-peer-dependencies",
"postchangelog": "prettier --write CHANGELOG.md"
}
}
}