-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
{
"name": "blog",
"version": "2.4.15",
"scripts": {
"dev": "bunx --bun astro dev",
"start": "bunx --bun astro dev",
"build": "astro build",
"preview": "astro preview",
"sync": "astro sync",
"astro": "astro",
"format:check": "prettier --plugin-search-dir=. --check .",
"format": "prettier --plugin-search-dir=. --write .",
"cz": "cz",
"prepare": "husky install",
"lint": "eslint ."
},
"dependencies": {
"@astrojs/mdx": "^2.3.1",
"@astrojs/rss": "^4.0.7",
"@resvg/resvg-js": "^2.6.2",
"artalk": "^2.9.0",
"astro": "^4.15.4",
"astro-icon": "^1.1.1",
"fuse.js": "^7.0.0",
"github-slugger": "^2.0.0",
"marked": "^12.0.2",
"mdast-util-heading-range": "^4.0.0",
"mdast-util-to-string": "^4.0.0",
"mermaid": "^10.9.1",
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"satori": "^0.10.14",
"tailwindcss": "^3.4.10"
},
"devDependencies": {
"@astrojs/react": "^3.6.2",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@iconify-json/openmoji": "^1.2.0",
"@tailwindcss/typography": "^0.5.15",
"@types/github-slugger": "^2.0.0",
"@types/react": "^18.3.5",
"@typescript-eslint/parser": "^6.21.0",
"astro-eslint-parser": "^0.14.0",
"bun-types": "^1.1.27",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.28.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"mdast-util-toc": "^7.1.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.12.3",
"prettier-plugin-tailwindcss": "^0.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.32.6",
"ts-dedent": "^2.2.0"
},
"trustedDependencies": [
"sharp"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"!(*.{png,jpg,jpeg,webp,txt,svg,gif})": [
"prettier --plugin-search-dir=. --write"
]
}
}