This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.06 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
75
{
"name": "blog",
"version": "2.3.0",
"scripts": {
"dev": "astro check --watch & astro dev",
"start": "astro dev",
"build": "astro build",
"postbuild": "pagefind --site 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/check": "^0.3.1",
"@astrojs/prefetch": "^0.4.1",
"@astrojs/rss": "^3.0.0",
"@astrojs/vue": "^3.0.3",
"@resvg/resvg-js": "^2.6.0",
"@types/react-dom": "^18.2.14",
"artalk": "^2.6.4",
"astro": "^3.4.3",
"github-slugger": "^2.0.0",
"photoswipe": "^5.4.2",
"photoswipe-dynamic-caption-plugin": "^1.2.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype-figure": "^1.0.1",
"rehype-katex": "^7.0.0",
"remark-collapse": "^0.1.2",
"remark-math": "^5.1.1",
"remark-mermaidjs": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-toc": "^9.0.0",
"remark-torchlight": "^0.0.5",
"satori": "^0.10.9",
"sharp": "^0.32.6",
"smol-toml": "^1.1.3",
"tailwindcss": "^3.3.5"
},
"devDependencies": {
"@astrojs/react": "^3.0.4",
"@astrojs/sitemap": "^3.0.3",
"@astrojs/tailwind": "^5.0.2",
"@tailwindcss/typography": "^0.5.10",
"@types/github-slugger": "^1.3.0",
"@types/react": "^18.2.34",
"@typescript-eslint/parser": "^6.9.1",
"astro-eslint-parser": "^0.16.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.53.0",
"eslint-plugin-astro": "^0.29.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"pagefind": "^1.0.3",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"wrangler": "^3.15.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx,json}": [
"prettier --plugin-search-dir=. --write"
]
}
}