-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.04 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
99
100
{
"name": "johnzanussi.com",
"description": "My personal website located at johnzanussi.com",
"version": "2.2.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"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^3.1.9",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/vercel": "^7.8.2",
"@expressive-code/plugin-line-numbers": "^0.38.3",
"@fontsource-variable/inter": "^5.1.0",
"@fontsource-variable/roboto-mono": "^5.1.0",
"@iconify-json/fa-solid": "^1.2.0",
"@iconify-json/fa6-brands": "^1.2.1",
"@iconify-json/fa6-solid": "^1.2.1",
"@iconify-json/logos": "^1.2.3",
"@iconify-json/mdi": "^1.2.1",
"@types/debounce": "^1.2.4",
"astro": "^4.16.10",
"astro-auto-import": "^0.4.4",
"astro-expressive-code": "^0.38.3",
"astro-icon": "^1.1.2",
"astro-purgecss": "^4.6.2",
"bootstrap": "^5.3.3",
"camelcase-keys": "^9.1.3",
"date-fns": "^4.1.0",
"debounce": "^2.2.0",
"deepmerge": "^4.3.1",
"katex": "^0.16.11",
"mdast-util-mdxjs-esm": "^2.0.1",
"metatags-generator": "^1.1.8",
"posthog-js": "^1.181.0",
"purgecss": "^6.0.0",
"reading-time": "^1.5.0",
"simple-scrollspy": "^2.5.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@eslint/js": "^9.14.0",
"@supabase/supabase-js": "^2.46.1",
"@types/katex": "^0.16.7",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"astro-compress": "^2.3.5",
"astro-robots-txt": "^1.0.0",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"eslint": "^9.14.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-unused-imports": "^4.1.4",
"fastcomments-typescript": "^2.3.0",
"gemoji": "^8.1.0",
"github-slugger": "^2.0.0",
"husky": "^9.1.6",
"intersection-observer-debugger": "^0.1.1",
"lint-staged": "^15.2.10",
"mdast-util-to-string": "^4.0.0",
"rehype-accessible-emojis": "^0.3.2",
"rehype-add-classes": "^1.0.0",
"sass": "1.77.2",
"sharp": "^0.33.5",
"typescript": "^5.6.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"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.25.0"
}
}