-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "wrangler pages dev ./dist --port 4321",
"astro": "astro",
"send-email:dev": "node ./newsletter/send-email.cjs",
"send-email": "node ./newsletter/send-email.cjs --prod",
"clean": "del-cli dist"
},
"dependencies": {
"@astrojs/cloudflare": "^12.1.0",
"@astrojs/mdx": "^4.0.3",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.1",
"@fontsource-variable/faustina": "^5.0.9",
"@fontsource-variable/figtree": "^5.0.15",
"@fontsource/faustina": "^5.0.8",
"@fontsource/figtree": "^5.0.14",
"@sendgrid/client": "^7.7.0",
"@types/sanitize-html": "^2.9.1",
"astro": "^5.1.1",
"astro-expressive-code": "^0.38.3",
"cheerio": "^1.0.0-rc.12",
"del-cli": "^5.1.0",
"dotenv": "^16.3.1",
"html-to-text": "^9.0.5",
"juice": "^9.1.0",
"luxon": "^3.4.3",
"markdown-it": "^13.0.2",
"markdown-it-anchor": "^8.6.7",
"markdown-it-footnote": "^3.0.3",
"marked": "^11.0.0",
"minimist": "^1.2.8",
"node-fetch": "^2.0.0",
"prism-themes": "^1.9.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^4.0.0",
"remark-rehype": "^11.1.1",
"sanitize-html": "^2.11.0",
"satori": "^0.10.9",
"satori-html": "^0.3.2",
"sharp": "^0.32.6",
"slugify": "^1.6.6",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@jam-comments/astro": "^2.8.3",
"@types/luxon": "^3.3.2",
"@types/markdown-it-footnote": "^3.0.1",
"@types/node": "^20.8.3",
"@types/sharp": "^0.32.0",
"copy-folder-util": "^1.1.1",
"sass": "^1.68.0"
}
}