-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "penjj-blog",
"type": "module",
"packageManager": "[email protected]",
"description": "My personal website and blog.",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"prepare": "simple-git-hooks",
"ts-check": "tsc --noEmit && astro check --noEmit",
"lint": "eslint . --fix"
},
"dependencies": {
"astro": "^4.15.2",
"solid-js": "^1.8.22"
},
"devDependencies": {
"@antfu/eslint-config": "^3.0.0",
"@astrojs/check": "^0.9.3",
"@astrojs/mdx": "^3.1.5",
"@astrojs/solid-js": "^4.4.1",
"@iconify-json/bi": "^1.2.0",
"@iconify-json/material-symbols": "^1.2.0",
"@iconify-json/material-symbols-light": "^1.2.0",
"@penjj/unocss-attributify": "^0.0.4",
"@types/node": "^22.5.3",
"@unocss/reset": "^0.62.3",
"bumpp": "^9.5.2",
"cssnano": "^7.0.5",
"eslint-plugin-format": "^0.1.2",
"lint-staged": "^15.2.10",
"postcss-nested": "^6.2.0",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4",
"unocss": "^0.62.3",
"unocss-preset-forme": "^0.0.4",
"vue-commitlint": "^0.1.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm vue-commitlint"
},
"lint-staged": {
"*.{ts,tsx,astro}": [
"eslint --fix"
],
"*.{md,json}": [
"prettier --write"
]
}
}