-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "@tylerwray/me",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"typecheck": "tsc",
"format": "prettier --write .",
"check:format": "prettier --check .",
"astro": "astro"
},
"dependencies": {
"@astrojs/prefetch": "^0.4.1",
"@astrojs/react": "^3.0.7",
"@astrojs/sitemap": "^3.0.3",
"@astrojs/tailwind": "^5.0.3",
"@fontsource-variable/inter": "^5.0.15",
"@tailwindcss/typography": "^0.5.8",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"astro": "^4.0.4",
"mdast-util-to-string": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-code-extra": "^1.0.1",
"remark-code-frontmatter": "^1.0.0",
"remark-code-title": "^0.2.2",
"sharp": "^0.31.2",
"shiki": "^0.14.5",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"prettier": "^3.1.0",
"prettier-plugin-astro": "^0.12.2"
}
}