-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.68 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
{
"name": "johnzanussi.com",
"description": "My personal website located at johnzanussi.com",
"version": "3.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/johnzanussi/johnzanussi.com.git"
},
"author": "John Zanussi",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/johnzanussi/johnzanussi.com/issues"
},
"homepage": "https://johnzanussi.com",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"astro": "astro",
"prepare": "husky",
"update": "npx npm-check-updates",
"youtube": "npx ts-node --esm lib/youtube/youtube.mts",
"ts": "tsc --noEmit",
"lint": "eslint --cache src/**/*.{astro,ts}",
"lint:fix": "eslint --cache --fix src/**/*.{astro,ts}"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.8",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.2.1",
"@expressive-code/plugin-line-numbers": "^0.40.2",
"@fontsource-variable/inter": "^5.1.1",
"@fontsource-variable/roboto-mono": "^5.1.1",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/tabler": "^1.2.16",
"@tailwindcss/vite": "^4.0.8",
"astro": "^5.3.0",
"astro-expressive-code": "^0.40.2",
"astro-icon": "^1.1.5",
"date-fns": "^4.1.0",
"debounce": "^2.2.0",
"deepmerge": "^4.3.1",
"katex": "^0.16.21",
"metatags-generator": "^1.1.8",
"reading-time": "^1.5.0",
"rehype-class-names": "^2.0.0",
"simple-scrollspy": "^2.5.3",
"tailwindcss": "^4.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@types/debounce": "^1.2.4",
"@types/katex": "^0.16.7",
"@types/vfile": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"astro-compress": "^2.3.6",
"astro-robots-txt": "^1.0.0",
"eslint": "^9.21.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-unused-imports": "^4.1.4",
"fastcomments-typescript": "^3.0.2",
"gemoji": "^8.1.0",
"github-slugger": "^2.0.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"intersection-observer-debugger": "^0.1.1",
"lint-staged": "^15.4.3",
"mdast-util-to-string": "^4.0.0",
"rehype-accessible-emojis": "^0.3.2",
"sharp": "^0.33.5",
"typescript": "^5.7.3",
"unist-util-find-after": "^5.0.0",
"unist-util-visit": "^5.0.0",
"unist-util-visit-parents": "^6.0.1"
},
"lint-staged": {
"*.{astro,js,ts}": "eslint --cache --fix",
"*.{gif,jpg,jpeg,png}": "node ./lib/compress-images.mjs"
}
}