-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "blog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky",
"prettier": "prettier --write ."
},
"dependencies": {
"@astrojs/vue": "^5.0.3",
"@vueuse/core": "^12.2.0",
"astro": "^5.1.1",
"lucide-vue-next": "^0.469.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@astrojs/mdx": "^4.0.3",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.4",
"@tailwindcss/typography": "^0.5.15",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write --ignore-unknown"
],
"*.{md,mdx}": [
"prettier --write --ignore-unknown"
],
"*.{vue, astro}": [
"prettier --write --ignore-unknown"
],
"*.{json,html}": [
"prettier --write --ignore-unknown"
],
"*.css": [
"prettier --write --ignore-unknown"
]
}
}