forked from duynndu/mfe-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.96 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.96 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
{
"name": "dynamic-template-editor",
"version": "0.0.0",
"scripts": {
"start:shell": "npm run build:template-editor:shell && ng s shell",
"build:shell": "npm run build:template-editor:shell && ng build shell",
"serve:shell": "cd dist/shell && npx serve -l 4200 --cors",
"start:template-editor": "cd projects/template-editor && vite",
"build:template-editor": "cd projects/template-editor && vite build",
"build:template-editor:shell": "cd projects/template-editor && vite build --mode shell",
"build:template-editor:demo": "cd projects/template-editor && vite build --mode demo",
"serve:template-editor": "cd dist/template-editor && npx serve -l 4202 --cors",
"build:all:demo": "npm run build:template-editor:demo && ng build shell --configuration=demo",
"capture:template": "cd projects/template-editor && node ./scripts/capture-template-artifacts.mjs"
},
"private": true,
"dependencies": {
"@angular-architects/module-federation": "^20.0.0",
"@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-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",
"ngx-build-plus": "^20.0.0",
"typescript": "~5.8.2",
"vue": "^3.5.22"
}
}