-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "arikko.dev",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "bun run generate:og && astro build",
"preview": "astro preview",
"astro": "astro",
"sync": "astro sync",
"format:write": "prettier --write . --plugin=prettier-plugin-astro",
"generate:og": "bun run ./scripts/generate-og.tsx"
},
"dependencies": {
"@astrojs/mdx": "4.0.8",
"@astrojs/react": "4.2.0",
"@astrojs/rss": "4.0.11",
"@astrojs/sitemap": "3.2.1",
"@astrojs/vercel": "^8.0.5",
"@calcom/embed-react": "^1.5.2",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"astro": "5.2.3",
"clsx": "^2.1.1",
"luxon": "^3.5.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.0.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.3",
"@types/luxon": "^3.4.2",
"gray-matter": "^4.0.3",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-prism-plus": "^2.0.0",
"rehype-slug": "^6.0.0",
"satori": "^0.12.1",
"sharp": "^0.33.5"
}
}