forked from ngrx/signal-store-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "signal-store-workshop",
"scripts": {
"ng": "ng",
"start": "run-p start:app start:server",
"start:app": "ng serve",
"start:server": "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.10",
"@angular/cdk": "18.2.11",
"@angular/common": "18.2.10",
"@angular/compiler": "18.2.10",
"@angular/core": "18.2.10",
"@angular/forms": "18.2.10",
"@angular/material": "18.2.11",
"@angular/platform-browser": "18.2.10",
"@angular/platform-browser-dynamic": "18.2.10",
"@angular/router": "18.2.10",
"@ngrx/operators": "18.1.1",
"@ngrx/signals": "18.1.1",
"rxjs": "7.8.1",
"tslib": "2.6.2"
},
"devDependencies": {
"@angular/build": "18.2.11",
"@angular/cli": "18.2.11",
"@angular/compiler-cli": "18.2.10",
"json-server": "0.17.4",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"typescript": "5.5.4"
}
}