-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.34 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.34 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
62
63
64
65
66
67
68
{
"name": "@hcmp-workspace/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start:host": "nx serve hcmp-host",
"start:cost": "nx serve hcmp-cost-management --port=4215",
"start:all": "nx run-many --target=serve --projects=hcmp-host,hcmp-cost-management --parallel",
"build:host": "nx build hcmp-host",
"build:cost": "nx build hcmp-cost-management",
"build:all": "nx run-many --target=build --projects=hcmp-host,hcmp-cost-management --parallel",
"test:host": "nx test hcmp-host",
"test:cost": "nx test hcmp-cost-management",
"test:all": "nx run-many --target=test --projects=hcmp-host,hcmp-cost-management --parallel",
"lint:host": "nx lint hcmp-host",
"lint:cost": "nx lint hcmp-cost-management",
"lint:all": "nx run-many --target=lint --projects=hcmp-host,hcmp-cost-management --parallel"
},
"private": true,
"dependencies": {
"@angular/common": "~19.2.0",
"@angular/compiler": "~19.2.0",
"@angular/core": "~19.2.0",
"@angular/forms": "~19.2.0",
"@angular/platform-browser": "~19.2.0",
"@angular/platform-browser-dynamic": "~19.2.0",
"@angular/platform-server": "~19.2.0",
"@angular/router": "~19.2.0",
"@angular/ssr": "~19.2.0",
"express": "^4.21.2",
"rxjs": "~7.8.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~19.2.0",
"@angular-devkit/core": "~19.2.0",
"@angular-devkit/schematics": "~19.2.0",
"@angular/cli": "~19.2.0",
"@angular/compiler-cli": "~19.2.0",
"@angular/language-service": "~19.2.0",
"@eslint/js": "^9.8.0",
"@nx/angular": "21.1.3",
"@nx/devkit": "21.1.3",
"@nx/eslint": "21.1.3",
"@nx/eslint-plugin": "21.1.3",
"@nx/js": "21.1.3",
"@nx/playwright": "21.1.3",
"@nx/web": "21.1.3",
"@nx/workspace": "21.1.3",
"@playwright/test": "^1.36.0",
"@schematics/angular": "~19.2.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/express": "^4.17.21",
"@typescript-eslint/utils": "^8.19.0",
"angular-eslint": "^19.2.0",
"browser-sync": "^3.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-playwright": "^1.6.2",
"nx": "21.1.3",
"prettier": "^2.6.2",
"tslib": "^2.3.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.19.0"
}
}