forked from phongnguyend/Practical.CleanArchitecture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.54 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
{
"name": "angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^22.0.2",
"@angular/cdk": "^22.0.2",
"@angular/common": "^22.0.2",
"@angular/compiler": "^22.0.2",
"@angular/core": "^22.0.2",
"@angular/forms": "^22.0.2",
"@angular/material": "^22.0.2",
"@angular/platform-browser": "^22.0.2",
"@angular/platform-browser-dynamic": "^22.0.2",
"@angular/router": "^22.0.2",
"@microsoft/signalr": "^10.0.0",
"@ngrx/effects": "^21.1.1",
"@ngrx/operators": "^21.1.1",
"@ngrx/store": "^21.1.1",
"@ngrx/store-devtools": "^21.1.1",
"bootstrap": "^5.3.8",
"font-awesome": "^4.7.0",
"ngx-toastr": "^20.0.5",
"oidc-client-ts": "^3.5.0",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "^0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^22.0.3",
"@angular/cli": "^22.0.3",
"@angular/compiler-cli": "^22.0.2",
"@angular/language-service": "^22.0.2",
"@types/node": "^26.0.0",
"prettier": "^3.8.4",
"ts-node": "~10.9.2",
"typescript": "^6.0.3"
},
"overrides": {
"@ngrx/effects": {
"@angular/core": "$@angular/core"
},
"@ngrx/store": {
"@angular/core": "$@angular/core"
},
"@ngrx/store-devtools": {
"@angular/core": "$@angular/core"
},
"ngx-toastr": {
"@angular/common": "$@angular/common",
"@angular/core": "$@angular/core"
}
}
}