-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.7 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
{
"name": "ng-dynamic-mf",
"description": "Truly dynamic modules at runtime with Module Federation",
"version": "0.0.0",
"license": "MIT",
"author": {
"name": "Janik Schumacher (LoaderB0T)",
"url": "https://awdware.de"
},
"homepage": "https://github.com/LoaderB0T/ng-dynamic-mf",
"bugs": {
"url": "https://github.com/LoaderB0T/ng-dynamic-mf/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/LoaderB0T/ng-dynamic-mf.git"
},
"keywords": [
"module",
"federation",
"mf",
"angular",
"assets",
"global",
"translations",
"styles",
"dynamic",
"module-federation",
"esbuild",
"native",
"microfrontend",
"micro-frontend",
"native-federation"
],
"scripts": {
"lint": "pnpm eslint ./projects/**",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"drop": "cd dist && pnpm publish --no-git-checks",
"postbuild": "cpy README.md dist && ts-node ./build/fix-special-const.ts && pnpm generate-schema",
"generate-schema": "pnpm typescript-json-schema projects/ng-dynamic-mf/tsconfig.lib.json ModuleDefinitions --strictNullChecks true --required -o schema.json",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.3",
"@angular/common": "^19.0.3",
"@angular/compiler": "^19.0.3",
"@angular/core": "^19.0.3",
"@angular/forms": "^19.0.3",
"@angular/platform-browser": "^19.0.3",
"@angular/platform-browser-dynamic": "^19.0.3",
"@angular/router": "^19.0.3",
"@ngx-translate/core": "^16.0.3",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"typescript-json-schema": "^0.65.1",
"zone.js": "~0.15.0"
},
"prettier": "@awdware/prettier-config",
"devDependencies": {
"@angular-architects/module-federation": "^18.0.6",
"@angular-architects/native-federation": "^18.2.3",
"@angular-architects/native-federation-runtime": "^0.9.1",
"@angular-devkit/build-angular": "^19.0.4",
"@angular-eslint/builder": "^19.0.1",
"@angular-eslint/eslint-plugin": "^19.0.1",
"@angular-eslint/eslint-plugin-template": "^19.0.1",
"@angular-eslint/template-parser": "^19.0.1",
"@angular/cli": "^19.0.4",
"@angular/compiler-cli": "^19.0.3",
"@awdware/eslint-config-angular": "^2.0.0",
"@awdware/eslint-config-base": "^2.1.1",
"@awdware/prettier-config": "^1.0.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"cpy-cli": "^5.0.0",
"eslint": "^9.16.0",
"ng-packagr": "^19.0.1",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "~5.6.3"
}
}