-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 844 Bytes
/
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
{
"name": "homepage",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky"
},
"engine": {
"node": "20"
},
"dependencies": {
"@astrojs/mdx": "^0.18.3",
"@astrojs/solid-js": "^2.1.1",
"@astrojs/tailwind": "^3.1.1",
"@astrojs/vercel": "^3.2.4",
"astro": "^2.3.0",
"remark-toc": "^8.0.1",
"solid-js": "^1.4.3",
"tailwindcss": "^3.0.24"
},
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.12.0",
"prettier-plugin-tailwindcss": "^0.5.3"
},
"lint-staged": {
"*.{astro,mjs,ts,tsx,json}": [
"prettier --write"
]
}
}