-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (51 loc) · 2.01 KB
/
package.json
File metadata and controls
55 lines (51 loc) · 2.01 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
{
"name": "mf-angular-20",
"version": "0.0.0",
"scripts": {
"start:shell": "ng s shell",
"build:shell": "ng build shell",
"serve:shell": "cd dist/shell/browser && npx serve -l 4200 --cors",
"start:first-mf": "ng s first-mf",
"build:first-mf": "ng build first-mf",
"serve:first-mf": "cd dist/first-mf/browser && npx serve -l 4201 --cors",
"start:template-editor": "cd projects/template-editor && vite",
"build:template-editor": "cd projects/template-editor && vite build",
"serve:template-editor": "cd dist/template-editor && npx serve -l 4202 --cors",
"build:all": "concurrently \"npm run build:shell\" \"npm run build:first-mf\" \"npm run build:template-editor\"",
"serve:all": "concurrently \"npm run serve:shell\" \"npm run serve:first-mf\" \"npm run serve:template-editor\"",
"build:all:demo": "concurrently \"ng build shell --configuration=demo\" \"ng build first-mf --configuration=demo\" \"cd projects/template-editor && vite build --mode demo\""
},
"private": true,
"dependencies": {
"@angular/animations": "^20.0.0",
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/router": "^20.0.0",
"@softarc/native-federation-node": "^2.0.10",
"es-module-shims": "^1.5.12",
"js-beautify": "^1.15.4",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-architects/native-federation": "^20.0.6",
"@angular-devkit/build-angular": "^20.0.3",
"@angular/build": "^20.0.3",
"@angular/cli": "^20.0.2",
"@angular/compiler-cli": "^20.0.0",
"@types/jasmine": "~5.1.0",
"@types/js-beautify": "^1.14.3",
"concurrently": "^9.1.2",
"jasmine-core": "~5.7.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",
"typescript": "~5.8.2"
}
}