-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 1.14 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
{
"name": "angular-multiversion-onedomain",
"version": "2.0.0",
"description": "This project use some micro-frontend concepts to demonstrates how to deploy multiple angular apps on different Docker containers responding under the same domain and the common parts like header and footer implemented as web components. The apps are developed on different angular versions and the static content are served from different servers depending of the request typed making use of Nginx HTTP Proxying.",
"repository": {
"url": "https://github.com/yduartep/angular-multiversion-onedomain"
},
"scripts": {
"install:elements": "cd ./angular-common-elements && npm i",
"install:angular8": "cd ./angular8-demo && npm i",
"install:angularjs": "cd ./angularjs-demo && npm i",
"install": "npm run install:elements && npm run install:angular8 && npm run install:angularjs"
},
"keywords": [
"angular",
"angular8",
"angularjs",
"nginx",
"docker",
"docker-compose",
"proxy-reverse",
"http",
"proxying",
"micro-frontend"
],
"author": "Yahima Duarte <[email protected]>",
"license": "ISC",
"private": false
}