-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 939 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
40
41
42
{
"name": "astro-sample",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"format": "prettier --write .",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.@(astro|js|mdx|md|json|ts|tsx)": [
"npm run format"
]
},
"dependencies": {
"@astrojs/deno": "^4.1.0",
"@astrojs/react": "^2.1.0",
"@astrojs/tailwind": "^3.1.0",
"@astrojs/vercel": "^3.2.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"astro": "^2.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.7"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"prettier-plugin-astro": "^0.8.0"
}
}