-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.15 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
{
"name": "astro-blog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"dev:pagefind": "npm run pagefind && npm run dev:copy:pagefind",
"dev:copy:pagefind": "npx shx cp -r dist/pagefind public/",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"pagefind": "npx pagefind --site dist",
"postbuild": "npm run pagefind"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^3.1.9",
"@astrojs/react": "^3.6.3",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@nanostores/persistent": "^0.10.2",
"@nanostores/react": "^0.8.2",
"@radix-ui/react-dialog": "^1.1.3",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-hover-card": "^1.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"astro": "^4.16.16",
"astro-og-canvas": "^0.5.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"es-toolkit": "^1.29.0",
"lucide-react": "^0.462.0",
"nanostores": "^0.11.3",
"pagefind": "^1.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"reading-time": "^1.5.0",
"rehype-pretty-code": "^0.14.0",
"remark-callout": "^1.1.1",
"remark-gfm": "^4.0.0",
"shiki": "^1.24.0",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.15",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@typescript-eslint/parser": "^8.16.0",
"astro-eslint-parser": "^1.1.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.4.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"typescript-eslint": "^8.16.0"
}
}