forked from ixartz/Astro-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "benhammond.tech",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "astro dev --host",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"clean": "rimraf dist",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install"
},
"devDependencies": {
"@astrojs/react": "^3.6.2",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"@types/react": "^18.2.21",
"astro": "^5.0.0-beta.8",
"astro-robots-txt": "^0.3.2",
"husky": "^8.0.1",
"lint-staged": "^12.5.0",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.1.0-next.5",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.24",
"typescript": "^5.2.2"
},
"dependencies": {
"@astrojs/netlify": "^6.0.0-beta.1",
"@types/react-dom": "^18.2.7",
"biome": "^0.3.3",
"date-fns": "^2.28.0",
"graphql": "^16.8.1",
"octokit": "^3.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}