-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "ngrx-signals-events-prototype",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "run-p start:app start:api",
"start:app": "ng serve",
"start:api": "json-server --watch db.json --port 3000 --delay 1200",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"format": "prettier --write ."
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/cdk": "^18.2.8",
"@angular/common": "^18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/forms": "^18.2.0",
"@angular/material": "^18.2.8",
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/router": "^18.2.0",
"@ngrx/operators": "^18.1.0",
"@ngrx/signals": "^18.1.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.8",
"@angular/cli": "^18.2.8",
"@angular/compiler-cli": "^18.2.0",
"json-server": "^0.17.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "~5.5.2"
}
}