-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.62 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
{
"name": "@house-of-angular/ng-packages",
"version": "18.0.0",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"ng": "ng",
"start": "nx serve",
"build:package": "nx build",
"build": "nx run-many --targets=build --all",
"watch": "nx build --watch --configuration development",
"test": "nx run-many --targets=test --all",
"lint": "nx run-many --targets=lint --all",
"release:major": "standard-version --release-as=\"major\"",
"release:minor": "standard-version --release-as=\"minor\"",
"publish:latest": "ts-node ./build/publish-latest.ts",
"generate-changelog": "changelog generate",
"update:versions": "ts-node ./build/update-version-numbers.ts && npm run generate-changelog"
},
"private": true,
"dependencies": {
"@angular/animations": "18.0.4",
"@angular/cdk": "18.0.4",
"@angular/common": "18.0.4",
"@angular/compiler": "18.0.4",
"@angular/core": "18.0.4",
"@angular/forms": "18.0.4",
"@angular/material": "18.0.4",
"@angular/platform-browser": "18.0.4",
"@angular/platform-browser-dynamic": "18.0.4",
"@angular/router": "18.0.4",
"@commitlint/types": "^17.4.4",
"chalk": "^4.1.2",
"commander": "^10.0.1",
"generate-changelog": "^1.8.0",
"glob": "^8.1.0",
"json5": "^2.2.3",
"lodash-decorators": "^6.0.1",
"ora": "^8.0.1",
"rxjs": "~7.8.0",
"standard-version": "^9.5.0",
"ts-morph": "^18.0.0",
"tslib": "^2.3.0",
"zone.js": "0.14.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.0.5",
"@angular-devkit/core": "18.0.5",
"@angular-devkit/schematics": "18.0.5",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "~18.0.0",
"@angular/compiler-cli": "18.0.4",
"@angular/language-service": "18.0.4",
"@angular/material": "18.0.4",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@ngneat/spectator": "^16.0.0",
"@nrwl/angular": "19.3.1",
"@nrwl/cypress": "19.3.1",
"@nrwl/eslint-plugin-nx": "19.3.1",
"@nrwl/jest": "19.3.1",
"@nrwl/js": "19.3.1",
"@nrwl/linter": "19.3.1",
"@nrwl/web": "19.3.1",
"@nrwl/workspace": "19.3.1",
"@nx/js": "19.3.1",
"@schematics/angular": "18.0.5",
"@types/glob": "^8.1.0",
"@types/jasmine": "~4.3.0",
"@types/jest": "^29.5.11",
"@types/node": "18.16.9",
"@types/shelljs": "^0.8.12",
"@types/symlink-or-copy": "^1.2.0",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"@typescript-eslint/utils": "^8.0.0-alpha.28",
"cypress": "12.17.4",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.15.1",
"husky": "^8.0.3",
"jasmine-core": "~4.5.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-angular": "14.1.1",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "18.0.0",
"nx": "19.3.1",
"postcss": "^8.4.5",
"postcss-import": "~14.1.0",
"postcss-preset-env": "~7.5.0",
"postcss-url": "~10.1.3",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.1",
"ts-node": "10.9.1",
"typescript": "5.4.5"
},
"peerDependencies": {
"@commitlint/lint": "^17.6.5",
"git-describe": "^4.1.1",
"prettier": "^2.6.2",
"shelljs": "^0.8.5",
"symlink-or-copy": "^1.3.1"
},
"volta": {
"pnpm": "8.6.0",
"node": "20.11.0"
}
}