-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.58 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
115
116
117
118
119
120
{
"name": "angular-architects",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"nx": "nx",
"build": "nx run-many -t build --projects=tag:scope:mf* && nx run mf:post-build",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"publish": "nx run-many -t publish --projects=tag:scope:mf*",
"publish-local": "nx run-many -t publish-local --projects=tag:scope:mf*",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help"
},
"overrides": {
"ts-jest": {
"@babel/core": ">=7"
},
"nx": {
"brace-expansion": "^5.0.9"
},
"@nx/angular-rspack": {
"piscina": "^5.2.0"
},
"webpack-dev-server": "^5.2.6",
"uuid": "^11.1.1",
"@hono/node-server": "^2.0.5"
},
"packageManager": "npm",
"precommit": "format:write",
"private": true,
"dependencies": {
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
"@angular/core": "^22.0.0",
"@angular/forms": "^22.0.0",
"@angular/platform-browser": "^22.0.0",
"@angular/router": "^22.0.0",
"@module-federation/enhanced": "^2.2.2",
"@module-federation/runtime-core": "^2.2.2",
"rxjs": "^7.8.2",
"tslib": "^2.3.0",
"zone.js": "^0.16.0"
},
"peerDependencies": {
"@angular-devkit/build-angular": "^22.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^22.0.0",
"@angular-devkit/core": "^22.0.0",
"@angular-devkit/schematics": "^22.0.0",
"@angular-eslint/eslint-plugin": "^22.0.0",
"@angular-eslint/eslint-plugin-template": "^22.0.0",
"@angular-eslint/template-parser": "^22.0.0",
"@angular/build": "^22.0.0",
"@angular/cli": "^22.0.0",
"@angular/compiler-cli": "^22.0.0",
"@angular/language-service": "^22.0.0",
"@eslint/js": "^10.0.1",
"@nx/angular": "~23.1.0",
"@nx/angular-rspack": "~23.1.1",
"@nx/cypress": "~23.1.0",
"@nx/devkit": "~23.1.0",
"@nx/eslint": "~23.1.0",
"@nx/eslint-plugin": "~23.1.0",
"@nx/jest": "~23.1.0",
"@nx/js": "~23.1.0",
"@nx/webpack": "~23.1.0",
"@nx/workspace": "~23.1.0",
"@rspack/cli": "~1.6.8",
"@rspack/core": "~1.6.8",
"@schematics/angular": "^22.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.9.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@typescript-eslint/utils": "^8.58.0",
"angular-eslint": "^22.0.0",
"chalk": "^5.6.2",
"cypress": "15.20.0",
"eslint": "~10.8.0",
"globals": "^17.8.0",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest-environment-node": "^30.0.0",
"jest-preset-angular": "~17.0.0",
"json5": "^2.2.0",
"jsonc-eslint-parser": "^3.2.0",
"ng-packagr": "^22.0.0",
"node-fetch": "^3.3.2",
"nx": "~23.1.0",
"pre-commit": "2.0.0",
"prettier": "^3.6.2",
"semver": "~7.8.5",
"ts-jest": "29.4.12",
"tslib": "^2.3.0",
"typescript": "~6.0.0",
"typescript-eslint": "^8.58.0",
"verdaccio": "^6.2.1",
"webpack-merge": "^5.10.0",
"word-wrap": "^1.2.5"
},
"nx": {
"includedScripts": []
}
}