-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.39 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.39 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
50
51
52
53
54
55
56
57
58
59
{
"name": "microfrontend",
"version": "0.0.0",
"description": "Microfrontend test application",
"scripts": {
"ng": "ng",
"serve": "concurrently --kill-others \"ng serve src-a\" \"ng serve src-b\" \"ng serve src\"",
"build": "ng build common && ng build controller && ng build client",
"build:prod": "ng build common --configuration production && ng build controller --configuration production && ng build client --configuration production",
"test": "ng test common && ng test controller && ng test client",
"coverage": "ng build common && ng test common --watch=false --browsers=ChromeHeadlessCustom --code-coverage=true && ng test controller --watch=false --browsers=ChromeHeadlessCustom --code-coverage=true && ng test client --watch=false --browsers=ChromeHeadlessCustom --code-coverage=true",
"lint": "ng lint common && ng lint controller && ng lint client",
"e2e": "concurrently -k --success first --kill-others \"npm run serve\" \"npm run wait && npm run protractor\"",
"protractor": "protractor e2e/protractor.conf.js",
"webdriver:update": "webdriver-manager update",
"prettier": "prettier --write \"{projects,src,e2e}/**/*.ts\"",
"wait": "wait-on tcp:30103"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.1",
"@angular/common": "^15.2.1",
"@angular/compiler": "^15.2.1",
"@angular/core": "^15.2.1",
"@angular/forms": "^15.2.1",
"@angular/platform-browser": "^15.2.1",
"@angular/platform-browser-dynamic": "^15.2.1",
"@angular/router": "^15.2.1",
"rxjs": "~6.6.7",
"ts-node-dev": "^2.0.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.1",
"@angular/cli": "^15.2.1",
"@angular/compiler-cli": "^15.2.1",
"@angular/language-service": "^15.2.1",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^14.6.4",
"codelyzer": "^6.0.0",
"concurrently": "^7.2.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.3.20",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.1",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^15.2.2",
"prettier": "^2.1.1",
"protractor": "~7.0.0",
"ts-node": "^10.9.1",
"tslint": "~6.1.3",
"typescript": "~4.9.5",
"wait-on": "^6.0.1"
}
}