-
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.77 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.77 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": "marvel-api-clone",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.conf.json",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest --coverage",
"deploy": "ng build --output-path docs --base-href /marvel-api-clone/",
"serve:ssr:marvel-api-clone": "node dist/marvel-api-clone/server/server.mjs"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.1.2",
"@angular/cdk": "^20.1.2",
"@angular/common": "^20.1.2",
"@angular/compiler": "^20.1.2",
"@angular/core": "^20.1.2",
"@angular/forms": "^20.1.2",
"@angular/material": "^20.1.2",
"@angular/platform-browser": "^20.1.2",
"@angular/platform-browser-dynamic": "^20.1.2",
"@angular/platform-server": "^20.1.2",
"@angular/router": "^20.1.2",
"@angular/ssr": "^20.1.1",
"@ngrx/operators": "^19.2.1",
"@ngrx/signals": "^19.2.1",
"bootstrap": "^5.2.0",
"express": "^4.18.2",
"jasmine-marbles": "^0.9.2",
"rxjs": "~7.5.0",
"swiper": "^10.3.1",
"tslib": "^2.3.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.1.1",
"@angular/cli": "^20.1.1",
"@angular/compiler-cli": "^20.1.2",
"@types/express": "^4.17.17",
"@types/jasmine": "~3.10.0",
"@types/jest": "^29.5.13",
"@types/node": "^12.20.55",
"angular-cli-ghpages": "^1.0.3",
"browser-sync": "^3.0.0",
"jasmine-core": "~4.0.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.6.0",
"sass": "^1.71.1",
"ts-jest": "^29.2.5",
"typescript": "~5.8.3"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/src/setup.jest.ts"
]
},
"type": "module"
}