-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "astro-blog-template",
"type": "module",
"version": "0.0.36",
"private": false,
"engines": {
"node": ">=18.14.1",
"pnpm": ">=8.6.12"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"prebuild": "pnpm i18n",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp",
"i18n": "astro-i18next generate",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"astro": "^4.0.3",
"astro-i18next": "1.0.0-beta.21",
"astro-seo": "^0.8.0",
"dayjs": "^1.11.10",
"zx": "^7.2.3"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.18",
"@iconify-json/ic": "^1.1.16",
"@unocss/reset": "^0.57.7",
"@unocss/transformer-directives": "^0.57.7",
"@unocss/transformer-variant-group": "^0.57.7",
"astro-color-scheme": "1.1.2",
"astro-pagefind": "^1.3.0",
"astro-robots-txt": "^1.0.0",
"astro-sitemap": "^1.0.0",
"bumpp": "^9.2.1",
"eslint": "^8.55.0",
"eslint-plugin-astro": "^0.29.1",
"lint-staged": "^15.2.0",
"simple-git-hooks": "^2.9.0",
"unocss": "^0.57.7",
"unocss-preset-theme": "^0.11.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged && npx zx ./scripts/auto-update-frontmatter.mjs"
},
"lint-staged": {
"*": "eslint --fix"
}
}