-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.49 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.49 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
{
"name": "angular-microfrontends",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start:host": "ng serve host -o --port 5000",
"start:slides": "ng serve slides --port 3000",
"build:host": "ng build host --prod",
"build:slides": "ng build slides --prod",
"serve:dist": "concurrently \"serve dist/host -l 5000 -s\" \"serve dist/slides -l 3000 -s\" ",
"start": "concurrently \"npm run start:host\" \"npm run start:slides\" ",
"build": "npm run build:host && npm run build:slides",
"lint": "ng lint"
},
"private": true,
"resolutions": {
"webpack": "5.0.0"
},
"dependencies": {
"@angular-architects/module-federation": "^1.0.2",
"@angular/animations": "11.0.0",
"@angular/common": "11.0.0",
"@angular/compiler": "11.0.0",
"@angular/core": "11.0.0",
"@angular/forms": "11.0.0",
"@angular/platform-browser": "11.0.0",
"@angular/platform-browser-dynamic": "11.0.0",
"@angular/router": "11.0.0",
"@nrwl/workspace": "^10.3.0",
"@ngrx/store": "^10.0.1",
"@ngrx/store-devtools": "^10.0.1",
"concurrently": "^5.3.0",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1100.0",
"@angular/cli": "11.0.0",
"@angular/compiler-cli": "11.0.0",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"ngx-build-plus": "^10.1.1",
"serve": "^11.3.2",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.0.2"
}
}