-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.27 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
{
"name": "milobella-website",
"version": "0.0.0",
"description": "The website of Milobella application",
"repository": {
"type": "git",
"url": "git+https://github.com/milobella/application-web.git"
},
"keywords": [
"milobella",
"single-spa",
"micro-frontend"
],
"author": "Célian GARCIA",
"license": "MIT",
"bugs": {
"url": "https://github.com/milobella/application-web/issues"
},
"homepage": "https://github.com/milobella/application-web#readme",
"private": true,
"scripts": {
"// - INSTALLS": "Install angular for apps of the website",
"install:apps": "yarn --cwd angular install",
"install:portal": "yarn --cwd portal install",
"// - BUILDS": "Build apps of the website #requires yarn install:apps",
"build:apps:menu": "yarn --cwd angular build:single-spa:menu",
"build:apps:login": "yarn --cwd angular build:single-spa:login",
"build:apps:try-it": "yarn --cwd angular build:single-spa:try-it",
"build:apps:abilities": "yarn --cwd angular build:single-spa:abilities",
"build:apps:nlg": "yarn --cwd angular build:single-spa:nlg",
"build:apps": "run-s build:apps:*",
"// - STARTS": "Serve apps of the website #requires yarn build:apps",
"start:apps:menu": "serve angular/dist/menu -s -l 4200 --cors",
"start:apps:login": "serve angular/dist/login -s -l 4201 --cors",
"start:apps:try-it": "serve angular/dist/try-it -s -l 4202 --cors",
"start:apps:abilities": "serve angular/dist/abilities -s -l 4203 --cors",
"start:apps:nlg": "serve angular/dist/nlg -s -l 4204 --cors",
"start:apps": "concurrently -n w: yarn:start:apps:*",
"start:portal": "yarn --cwd portal start",
"// - WAIT UTILS": "Wait for apps to be up and running before running portal",
"wait:apps:menu": "wait-on tcp:4200",
"wait:apps:login": "wait-on tcp:4201",
"wait:apps:try-it": "wait-on tcp:4202",
"wait:apps:abilities": "wait-on tcp:4203",
"wait:apps:nlg": "wait-on tcp:4204",
"// - CYPRESS": "End-to-end tests",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:run:chrome": "cypress run --browser chrome"
},
"devDependencies": {
"concurrently": "7.6.0",
"cypress": "11.2.0",
"npm-run-all": "4.1.5",
"serve": "14.1.2",
"wait-on": "6.0.1"
}
}