-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 1.64 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
{
"name": "angular-micro-frontends",
"version": "1.0.0",
"author": {
"email": "adem@simsek.dev",
"name": "Adem Simsek"
},
"scripts": {
"postinstall": "npm run linker:core && npm run linker:common && npm run linker:platformBrowser",
"linker:core": "babel node_modules/@angular/core/fesm2015/core.mjs -d dist --plugins=@angular/compiler-cli/linker/babel",
"linker:common": "babel node_modules/@angular/common/fesm2015/common.mjs -d dist --plugins=@angular/compiler-cli/linker/babel",
"linker:platformBrowser": "babel node_modules/@angular/platform-browser/fesm2015/platform-browser.mjs -d dist --plugins=@angular/compiler-cli/linker/babel",
"first": "ng-packagr -p projects/first/package.json -c projects/first/tsconfig.json",
"second": "ng-packagr -p projects/second/package.json -c projects/second/tsconfig.json",
"shared": "ng-packagr -p projects/shared/package.json -c projects/shared/tsconfig.json",
"host": "ng-packagr -p projects/host/package.json -c projects/host/tsconfig.json",
"first:watch": "npm run first -- -w",
"second:watch": "npm run second -- -w",
"shared:watch": "npm run shared -- -w",
"host:watch": "npm run host -- -w",
"serve": "live-server demo --mount=/dist:./dist --mount=/node_modules:./node_modules"
},
"browserslist": [
"Chrome > 89"
],
"private": true,
"dependencies": {
"@angular/compiler": "~13.2.4",
"@angular/core": "~13.2.4",
"@angular/platform-browser": "~13.2.4"
},
"devDependencies": {
"@angular/compiler-cli": "~13.2.4",
"@babel/cli": "^7.17.6",
"live-server": "1.2.1",
"ng-packagr": "~13.2.1",
"typescript": "~4.4.4"
}
}