-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.94 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
{
"name": "@starheart/blog",
"version": "0.0.1",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"astro": "astro",
"build": "astro build",
"start": "astro dev",
"format": "pnpm run format:code",
"format:ci": "pnpm run format:imports && pnpm run format:code",
"format:code": "prettier --write . --cache --plugin-search-dir=.",
"format:imports": "organize-imports-cli ./tsconfig.json",
"format:package": "pnpx sort-package-json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "astro preview"
},
"devDependencies": {
"@astrojs/markdown-remark": "^6.0.1",
"@astrojs/mdx": "^4.0.2",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.3",
"@iconify/json": "^2.2.282",
"@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
"@tailwindcss/typography": "^0.5.15",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"astro": "^5.0.5",
"astro-compress": "^2.3.5",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-react": "^7.37.2",
"mdast-util-to-string": "^4.0.0",
"organize-imports-cli": "^0.10.0",
"postcss-import": "^16.1.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"rollup": "^4.28.1",
"shiki": "^1.24.2",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"unplugin-icons": "^0.21.0"
},
"dependencies": {
"@astrojs/preact": "^4.0.0",
"preact": "^10.25.2"
}
}