-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 951 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
{
"name": "@letschurch/blog",
"type": "module",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"check": "npm-run-all check:*",
"check:format": "prettier --check .",
"check:ts": "tsc"
},
"dependencies": {
"@astrojs/mdx": "^0.19.7",
"@astrojs/react": "^2.2.1",
"@astrojs/rss": "^2.4.3",
"@astrojs/sitemap": "^1.3.3",
"@astrojs/tailwind": "^4.0.0",
"@faire/mjml-react": "^3.3.0",
"@mdx-js/mdx": "^2.3.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"astro": "^2.7.2",
"mjml": "^4.14.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.2",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@types/mjml": "^4.7.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.10.0"
}
}