-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
98 lines (98 loc) · 2.89 KB
/
package.json
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "d-koppenhagen-website",
"version": "0.0.0",
"type": "module",
"description": "k9n.dev website",
"author": "Danny Koppenhagen <[email protected]> (https://k9n.dev)",
"homepage": "https://github.com/d-koppenhagen/d-koppenhagen-website",
"bugs": {
"url": "https://github.com/d-koppenhagen/d-koppenhagen-website/issues",
"email": "[email protected]"
},
"license": "MIT",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "ng serve",
"ng": "ng",
"start": "npm run dev",
"build": "ng build",
"watch": "ng build --watch",
"test": "ng test",
"lint": "ng lint",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@analogjs/content": "^1.10.3",
"@analogjs/router": "^1.10.3",
"@angular/animations": "^19.0.3",
"@angular/cdk": "^19.0.2",
"@angular/common": "^19.0.3",
"@angular/compiler": "^19.0.3",
"@angular/core": "^19.0.3",
"@angular/forms": "^19.0.3",
"@angular/material": "^19.0.2",
"@angular/platform-browser": "^19.0.3",
"@angular/platform-browser-dynamic": "^19.0.3",
"@angular/platform-server": "^19.0.3",
"@angular/router": "^19.0.3",
"@angular/service-worker": "^19.0.3",
"@angular/youtube-player": "^19.0.2",
"@fortawesome/angular-fontawesome": "^1.0.0",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@nx/angular": "^19.8.14",
"animate.css": "^4.1.1",
"clipboard": "^2.0.11",
"feed": "^4.2.2",
"front-matter": "^4.0.2",
"marked": "^13.0.0",
"marked-gfm-heading-id": "4.1.1",
"marked-highlight": "^2.2.1",
"marked-mangle": "^1.1.10",
"marked-shiki": "^1.1.1",
"mermaid": "^10.9.3",
"ngx-sharebuttons": "^13.0.0",
"rxjs": "~7.8.1",
"shiki": "^1.6.1",
"tslib": "^2.6.2",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@analogjs/platform": "^1.10.3",
"@analogjs/vite-plugin-angular": "^1.10.3",
"@analogjs/vitest-angular": "^1.10.3",
"@angular-eslint/builder": "19.0.1",
"@angular-eslint/eslint-plugin": "19.0.1",
"@angular-eslint/eslint-plugin-template": "19.0.1",
"@angular-eslint/schematics": "19.0.1",
"@angular-eslint/template-parser": "19.0.1",
"@angular/build": "^19.0.4",
"@angular/cli": "^19.0.4",
"@angular/compiler-cli": "^19.0.3",
"@nx/vite": "^19.1.0",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"eslint": "^9.16.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jsdom": "^24.1.3",
"lint-staged": "^15.2.10",
"nx": "^20.2.1",
"prettier": "^3.4.2",
"sass": "^1.82.0",
"typescript": "~5.6.3",
"vite": "^5.0.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^2.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}