-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.66 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
{
"name": "ghackenberg.github.io",
"type": "module",
"version": "1.0.0",
"description": "Personal portfolio website of Dr. Georg Hackenberg",
"author": "Georg Hackenberg <georg.hackenberg@fh-wels.at> (https://ghackenberg.github.io)",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ghackenberg/ghackenberg.github.io.git"
},
"homepage": "https://ghackenberg.github.io",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"typecheck": "astro check",
"lint": "eslint .",
"sync": "node scripts/sync.js",
"generate-carousel": "node scripts/generate-carousel.js",
"generate-assets": "node scripts/generate-assets.js",
"lighthouse": "node scripts/run-lighthouse.js",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/sitemap": "^3.7.3",
"@fontsource/inter": "^5.2.8",
"@fontsource/outfit": "^5.2.8",
"@octokit/core": "^7.0.6",
"@tailwindcss/vite": "^4.3.0",
"astro": "^6.4.4",
"googleapis": "^172.0.0",
"katex": "^0.17.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"cheerio": "^1.2.0",
"chrome-launcher": "^1.2.1",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"lighthouse": "^13.3.0",
"puppeteer": "^25.0.4",
"quickjs-wasi": "^2.2.0",
"typescript-eslint": "^8.61.1"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead"
]
}