forked from lxchapu/astro-gyoza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.04 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
{
"name": "astro-gyoza",
"type": "module",
"version": "0.0.1",
"scripts": {
"prepare": "pnpm exec simple-git-hooks",
"dev": "astro dev",
"build": "astro check && astro build && pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"lint": "prettier --write .",
"new-friend": "node scripts/new-friend.js",
"new-post": "node scripts/new-post.js",
"new-project": "node scripts/new-project.js"
},
"dependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/markdown-remark": "^5.1.0",
"@astrojs/react": "^3.3.0",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.3",
"@astrojs/tailwind": "^5.1.0",
"@radix-ui/react-dialog": "^1.0.5",
"@shikijs/rehype": "^1.3.0",
"@swup/astro": "^1.4.1",
"@types/chroma-js": "^2.4.4",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.78",
"@types/react-dom": "^18.2.25",
"@waline/client": "^3.1.3",
"astro": "^4.6.1",
"chroma-js": "^2.4.2",
"clsx": "^2.1.0",
"framer-motion": "^11.1.5",
"hastscript": "^9.0.0",
"jotai": "^2.8.0",
"katex": "^0.16.10",
"lodash-es": "^4.17.21",
"mdast-util-to-string": "^4.0.0",
"pagefind": "^1.1.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^10.0.5",
"reading-time": "^1.5.0",
"rehype-katex": "^7.0.0",
"remark-directive": "^3.0.0",
"remark-math": "^6.0.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@inquirer/prompts": "^5.0.2",
"lint-staged": "^15.2.2",
"micromark-util-symbol": "^2.0.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit $1",
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx.astro,md,css,json}": "prettier --write"
}
}