-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 3.69 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
{
"name": "npa-micro-front-mofe",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:mf-shell": "ng serve mf-shell -o",
"start:mf-payments": "ng serve mf-payments -o",
"start:mf-shopping": "ng serve mf-shopping -o",
"start:all": "npm-run-all --parallel start:mf-payments start:mf-shopping start:mf-shell",
"start:dev:mf-shell": "ng serve mf-shell --configuration development",
"start:dev:mf-payments": "ng serve mf-payments --configuration development",
"start:dev:mf-shopping": "ng serve mf-shopping --configuration development",
"start:dev:all": "npm-run-all --parallel start:dev:mf-payments start:dev:mf-shopping start:dev:mf-shell",
"start:stg:mf-shell": "ng serve mf-shell --configuration stage",
"start:stg:mf-payments": "ng serve mf-payments --configuration stage",
"start:stg:mf-shopping": "ng serve mf-shopping --configuration stage",
"start:stg:all": "npm-run-all --parallel start:stg:mf-payments start:stg:mf-shopping start:stg:mf-shell",
"start:prod:mf-shell": "ng serve mf-shell --configuration production",
"start:prod:mf-payments": "ng serve mf-payments --configuration production",
"start:prod:mf-shopping": "ng serve mf-shopping --configuration production",
"start:prod:all": "npm-run-all --parallel start:prod:mf-payments start:prod:mf-shopping start:prod:mf-shell",
"build": "ng build",
"build:mf-shell": "ng build mf-shell",
"build:mf-payments": "ng build mf-payments",
"build:mf-shopping": "ng build mf-shopping",
"build:all": "npm run build:mf-payments && npm run build:mf-shopping && npm run build:mf-shell",
"build:dev:mf-shell": "ng build mf-shell --configuration development",
"build:dev:mf-payments": "ng build mf-payments --configuration development",
"build:dev:mf-shopping": "ng build mf-shopping --configuration development",
"build:dev:all": "npm run build:dev:mf-payments && npm run build:dev:mf-shopping && npm run build:dev:mf-shell",
"build:stg:mf-shell": "ng build mf-shell --configuration stage",
"build:stg:mf-payments": "ng build mf-payments --configuration stage",
"build:stg:mf-shopping": "ng build mf-shopping --configuration stage",
"build:stg:all": "npm run build:stg:mf-payments && npm run build:stg:mf-shopping && npm run build:stg:mf-shell",
"build:prod:mf-shell": "ng build mf-shell",
"build:prod:mf-payments": "ng build mf-payments",
"build:prod:mf-shopping": "ng build mf-shopping",
"build:prod:all": "npm run build:prod:mf-shell && npm run build:prod:mf-shopping && npm run build:prod:mf-payments",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"run:all": "node node_modules/@angular-architects/module-federation/src/server/mf-dev-server.js"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.0",
"@angular/common": "^15.2.0",
"@angular/compiler": "^15.2.0",
"@angular/core": "^15.2.0",
"@angular/forms": "^15.2.0",
"@angular/platform-browser": "^15.2.0",
"@angular/platform-browser-dynamic": "^15.2.0",
"@angular/router": "^15.2.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-architects/module-federation": "^15.0.3",
"@angular-devkit/build-angular": "^15.2.6",
"@angular/cli": "~15.2.4",
"@angular/compiler-cli": "^15.2.0",
"@types/jasmine": "~4.3.0",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^15.2.2",
"ngx-build-plus": "^15.0.0",
"npm-run-all": "^4.1.5",
"typescript": "~4.9.4"
}
}