-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.74 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.74 KB
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
{
"name": "astro-blog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro check --watch & astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,svelte,astro}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx,svelte,astro}\""
},
"dependencies": {
"@astrojs/check": "0.9.6",
"@astrojs/mdx": "4.3.13",
"@astrojs/rss": "4.0.14",
"@astrojs/sitemap": "3.6.1",
"@astrojs/tailwind": "6.0.2",
"@astrojs/vercel": "9.0.3",
"@fontsource-variable/public-sans": "^5.2.7",
"@vercel/analytics": "^1.6.1",
"ajv": "^8.17.1",
"astro": "5.16.8",
"astro-expressive-code": "0.41.6",
"astro-icon": "^1.1.5",
"clsx": "^2.1.1",
"jquery": "^3.7.1",
"mdast-util-to-string": "^4.0.0",
"punycode": "^2.3.1",
"reading-time": "^1.5.0",
"rehype-external-links": "^3.0.0",
"rehype-mathjax": "^6.0.0",
"remark-math": "^6.0.0",
"remark-smartypants": "^3.0.2",
"remark-unwrap-images": "^4.0.1",
"sharp": "^0.33.5",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.19",
"@types/bun": "latest",
"@typescript-eslint/parser": "^7.18.0",
"daisyui": "^5.5.14",
"eslint": "^8.57.1",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-jsx-a11y": "^6.10.2",
"prettier": "^3.8.1",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.14"
},
"module": "index.ts",
"peerDependencies": {
"typescript": "^5.0.0"
}
}