forked from lxchapu/astro-gyoza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.09 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
{
"name": "kylejkc",
"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.9.0",
"@astrojs/markdown-remark": "^5.2.0",
"@astrojs/react": "^3.6.1",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@swup/astro": "^1.4.1",
"@radix-ui/react-dialog": "^1.1.1",
"@shikijs/rehype": "^1.12.1",
"@types/chroma-js": "^2.4.4",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@waline/client": "^3.3.0",
"astro": "^4.13.1",
"chroma-js": "^2.6.0",
"clsx": "^2.1.1",
"framer-motion": "^11.3.21",
"hastscript": "^9.0.0",
"jotai": "^2.9.1",
"katex": "^0.16.11",
"lodash-es": "^4.17.21",
"mdast-util-to-string": "^4.0.0",
"pagefind": "^1.1.0",
"qrcode.react": "^3.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"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.7",
"typed.js": "^2.1.0",
"typescript": "^5.5.4",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@inquirer/prompts": "^5.3.6",
"lint-staged": "^15.2.7",
"micromark-util-symbol": "^2.0.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.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"
},
"packageManager": "[email protected]"
}