-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.87 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.87 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "www",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration=production",
"test": "ng test",
"test:watch": "ng test --watch=true",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"format": "prettier --write \"src/**/*.{ts,html,scss}\"",
"format:check": "prettier --check \"src/**/*.{ts,html,scss}\"",
"e2e": "ng e2e",
"serve:static": "npx http-server dist-prod/browser -p 8080 -c-1",
"serve:ssr": "node dist-prod/server/server.mjs"
},
"private": true,
"dependencies": {
"@angular-eslint/schematics": "^20.1.1",
"@angular/animations": "^20.3.15",
"@angular/cdk": "^20.2.14",
"@angular/common": "^20.3.15",
"@angular/compiler": "^20.3.15",
"@angular/core": "^20.3.15",
"@angular/forms": "^20.3.15",
"@angular/localize": "^20.3.15",
"@angular/material": "^20.2.14",
"@angular/platform-browser": "^20.3.15",
"@angular/platform-browser-dynamic": "^20.3.15",
"@angular/platform-server": "^20.3.15",
"@angular/router": "^20.3.15",
"@angular/ssr": "^20.3.13",
"@fortawesome/angular-fontawesome": "^2.0.1",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@ks89/angular-modal-gallery": "^13.0.0",
"@ngx-translate/core": "^16.0.4",
"@ngx-translate/http-loader": "^16.0.1",
"core-js": "^3.43.0",
"express": "^5.1.0",
"material-symbols": "^0.40.2",
"ng-lazyload-image": "^9.1.3",
"ngx-sharebuttons": "^17.0.0",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.3.13",
"@angular-eslint/builder": "20.1.1",
"@angular-eslint/eslint-plugin": "^20.1.1",
"@angular-eslint/eslint-plugin-template": "^20.1.1",
"@angular-eslint/template-parser": "^20.1.1",
"@angular/cli": "^20.0.5",
"@angular/compiler-cli": "^20.0.6",
"@angular/language-service": "^20.0.6",
"@types/express": "^5.0.3",
"@types/hammerjs": "^2.0.46",
"@types/jasmine": "^5.1.8",
"@types/jasminewd2": "^2.0.13",
"@types/mousetrap": "^1.6.15",
"@types/node": "^24.0.10",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"@typescript-eslint/utils": "^8.35.1",
"eslint": "^9.30.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^51.3.3",
"http-server": "^14.1.1",
"jasmine-core": "^5.8.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"prettier": "^3.7.4",
"ts-node": "~10.9.2",
"typescript": "~5.8.3"
}
}