-
-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "jest",
"description": "Angular Jest Only",
"version": "0.0.0",
"private": true,
"scripts": {
"npm": "npm",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "npm run test:jest",
"test:jest": "jest --config jest.config.ts",
"test:jest:debug": "jest -i --watch"
},
"dependencies": {
"@angular/animations": "20.3.17",
"@angular/common": "20.3.17",
"@angular/compiler": "20.3.17",
"@angular/core": "20.3.17",
"@angular/forms": "20.3.17",
"@angular/platform-browser": "20.3.17",
"@angular/platform-browser-dynamic": "20.3.17",
"@angular/router": "20.3.17",
"rxjs": "7.8.2",
"tslib": "2.8.1",
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular/build": "21.2.0",
"@angular/cli": "21.2.0",
"@angular/compiler-cli": "20.3.17",
"@types/jest": "30.0.0",
"@types/node": "24.11.0",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"jest-preset-angular": "16.1.1",
"ng-packagr": "20.3.2",
"npm": "11.11.0",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"engines": {
"npm": "11.11.0"
}
}