-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.02 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
{
"name": "",
"version": "2.2.0",
"scripts": {
"dev": "astro check --watch & astro dev",
"start": "astro dev",
"build": "astro build && cp -r ./src/content/post/_assets ./dist/ ",
"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/rss": "^3.0.0",
"@jsdevtools/rehype-toc": "^3.0.2",
"@resvg/resvg-js": "^2.6.2",
"astro": "^3.6.5",
"fuse.js": "^7.0.0",
"github-slugger": "^2.0.0",
"mdast-util-gfm-table": "^2.0.0",
"mdast-util-to-markdown": "^2.1.0",
"react-icons": "^4.12.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-wiki-link": "^2.0.1",
"satori": "^0.10.14",
"tailwindcss": "^3.4.12"
},
"devDependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/react": "^3.6.2",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.1",
"@tailwindcss/typography": "^0.5.15",
"@types/react": "^18.3.8",
"@typescript-eslint/parser": "^6.21.0",
"astro-eslint-parser": "^0.16.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-plugin-astro": "^0.30.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx,json}": [
"prettier --plugin-search-dir=. --write"
]
},
"packageManager": "[email protected]+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
}