-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.45 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
60
61
{
"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": "npx playwright test",
"e2e:headed": "npx playwright test --headed",
"prettier": "prettier --write \"{projects,src,e2e}/**/*.ts\""
},
"private": true,
"dependencies": {
"@angular/animations": "^21.2.7",
"@angular/common": "^21.2.7",
"@angular/compiler": "^21.2.7",
"@angular/core": "^21.2.7",
"@angular/forms": "^21.2.7",
"@angular/platform-browser": "^21.2.7",
"@angular/platform-browser-dynamic": "^21.2.7",
"@angular/router": "^21.2.7",
"rxjs": "~6.6.7",
"ts-node-dev": "^2.0.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.2.6",
"@angular-eslint/builder": "^21.3.1",
"@angular-eslint/eslint-plugin": "^21.3.1",
"@angular-eslint/eslint-plugin-template": "^21.3.1",
"@angular-eslint/template-parser": "^21.3.1",
"@angular/cli": "^21.2.6",
"@angular/compiler-cli": "^21.2.7",
"@angular/language-service": "^21.2.7",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@types/jasmine": "~4.3.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"angular-eslint": "^21.3.1",
"chokidar": "^5.0.0",
"concurrently": "^7.2.0",
"eslint": "^10.1.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": "^21.2.2",
"prettier": "^2.1.1",
"ts-node": "^10.9.1",
"typescript-eslint": "^8.58.0"
}
}