-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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
{
"name": "movie-review-site",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest --json --outputFile=unit_test_result.json --passWithNoTests",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.0.5",
"@angular/common": "^21.0.5",
"@angular/compiler": "^21.0.5",
"@angular/core": "^21.0.5",
"@angular/forms": "^21.0.5",
"@angular/platform-browser": "^21.0.5",
"@angular/platform-browser-dynamic": "^21.0.5",
"@angular/router": "^21.0.5",
"@mini-rx/signal-store": "3.1.2",
"@ngrx/signals": "20.1.0",
"@ngrx/store": "20.1.0",
"mini.css": "^3.0.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular/build": "^21.0.3",
"@angular/cli": "^21.0.3",
"@angular/compiler-cli": "^21.0.5",
"@types/jest": "^29.5.12",
"angular-eslint": "21.1.0",
"eslint": "^9.28.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-angular": "^14.6.2",
"ts-node": "^10.9.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.33.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"cert-ignore": [
"@types/jest",
"jest",
"jest-environment-jsdom",
"jest-preset-angular"
]
}