-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.35 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
{
"name": "nf-angular-react",
"version": "0.0.1",
"private": true,
"description": "Angular Native Federation shell that can embed Angular, React and any framework via web components.",
"scripts": {
"start": "ng serve shell",
"start:shell": "ng serve shell --port 4205",
"start:angular-mfe": "ng serve angular-mfe --port 4201",
"build": "ng build shell && ng build angular-mfe",
"build:shell": "ng build shell",
"build:angular-mfe": "ng build angular-mfe",
"test": "ng test",
"start:react-mfe": "npm --prefix projects/react-mfe run build && npx serve projects/react-mfe/dist --cors -p 4300",
"build:react-mfe": "npm --prefix projects/react-mfe run build"
},
"dependencies": {
"@angular-architects/native-federation": "^17.1.8",
"@angular/animations": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/forms": "^17.3.0",
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "^17.3.0",
"es-module-shims": "^2.8.0",
"react-router-dom": "^7.13.1",
"rxjs": "~7.8.1",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.0",
"@angular/cli": "^17.3.0",
"@angular/compiler-cli": "^17.3.0",
"typescript": "~5.4.5"
}
}