-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 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": "angular-signalstore-example",
"version": "1.0.3",
"description": "Angular SignalStore Example. Angular 20.3.3, @ngrx/signals 20.0.1",
"author": {
"name": "JC Lango",
"email": "info@angularexample.com"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"dependencies": {
"@angular/cdk": "^20.2.7",
"@angular/common": "^20.3.3",
"@angular/compiler": "^20.3.3",
"@angular/core": "^20.3.3",
"@angular/forms": "^20.3.3",
"@angular/material": "^20.2.7",
"@angular/platform-browser": "^20.3.3",
"@angular/router": "^20.3.3",
"@ngrx/signals": "^20.0.1",
"jiti": "^2.6.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^20.3.3",
"@angular/cli": "^20.3.3",
"@angular/compiler-cli": "^20.3.3",
"@eslint/js": "^9.37.0",
"@types/jest": "^30.0.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.4.0",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"jest-preset-angular": "^15.0.1",
"prettier": "3.6.2",
"ts-jest": "^29.4.4",
"typescript": "~5.9.2",
"typescript-eslint": "^8.46.0"
}
}