-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 3.21 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
101
{
"name": "blog",
"version": "1.0.0",
"private": true,
"description": "A blog to share stuff I find interesting or helpful and experiment with web technologies.",
"scripts": {
"dev": "astro dev",
"check": "prettier --check src && astro check && tsc --noEmit && eslint .",
"fmt": "prettier --write src",
"build": "astro build",
"preview": "astro preview",
"test": "playwright test",
"generate-posts-images": "node ./scripts/generate-posts-images.mjs",
"postinstall": "npx patch-package && npx astro sync",
"prepare": "husky install"
},
"dependencies": {
"@astro-community/astro-embed-youtube": "^0.5.6",
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.3",
"@astrojs/react": "^4.1.2",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.4",
"@codesandbox/sandpack-client": "^2.7.1",
"@codesandbox/sandpack-react": "^2.8.0",
"@codesandbox/sandpack-themes": "^2.0.21",
"@eslint/js": "^9.17.0",
"@floating-ui/dom": "^1.2.7",
"@fontsource/merriweather": "^4.5.14",
"@fontsource/source-sans-pro": "^5.0.1",
"@playwright/test": "^1.49.1",
"@types/eslint": "^9.6.1",
"@types/hast": "^3.0.4",
"@types/lodash": "^4.14.194",
"@types/md5": "^2.3.2",
"@types/mustache": "^4.2.2",
"@types/node": "^20.17.12",
"@types/postcss-functions": "^4.0.4",
"@types/postcss-import": "^14.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"a11y-dialog": "^7.5.2",
"astro": "^5.1.4",
"astro-robots-txt": "^0.3.12",
"astro-seo": "^0.6.1",
"astro-toc": "^0.1.3",
"autoprefixer": "^10.4.14",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"eslint": "^8.57.1",
"eslint-mdx": "^2.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mdx": "^2.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-react": "^7.32.2",
"fenceparser": "^2.2.0",
"globals": "^15.14.0",
"hast": "^1.0.0",
"hast-util-from-html": "^1.0.2",
"hast-util-select": "^6.0.2",
"hast-util-to-html": "^9.0.0",
"hast-util-to-string": "^3.0.1",
"hastscript": "^7.2.0",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"lucide-react": "^0.293.0",
"md5": "^2.3.0",
"mdast": "^3.0.0",
"mdast-util-to-string": "^4.0.0",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"patch-package": "^6.5.1",
"postcss": "^8.4.23",
"postcss-cli": "^8.3.1",
"postcss-functions": "^4.0.2",
"postcss-import": "^14.1.0",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.7.2",
"prettier-plugin-tailwindcss": "^0.2.8",
"react": "^18.2.0",
"react-compare-slider": "^2.2.0",
"react-dom": "^18.2.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-katex": "^7.0.1",
"rehype-slug": "^6.0.0",
"remark-directive": "^2.0.1",
"remark-math": "^6.0.0",
"shiki": "^0.14.5",
"shiki-twoslash": "^3.1.2",
"tailwind-merge": "^1.12.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"zod": "^3.21.4"
}
}