-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.27 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.27 KB
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
{
"name": "codingwithcalvin.net-astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "node scripts/copy-originals.js && astro dev",
"build": "node scripts/copy-originals.js && astro build",
"build:with-stats": "node scripts/fetch-project-stats.js && node scripts/copy-originals.js && astro build",
"preview": "astro preview",
"astro": "astro",
"new": "node scripts/new-post.js",
"new:project": "node scripts/new-project.js",
"cover": "node scripts/generate-cover.js",
"cover:project": "node scripts/generate-project-cover.js",
"cover:page-og": "node scripts/generate-page-og.js",
"copy-originals": "node scripts/copy-originals.js",
"fetch:stats": "node scripts/fetch-project-stats.js"
},
"dependencies": {
"@astrojs/rss": "^4.0.14",
"@astrojs/sitemap": "^3.6.0",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"astro": "^5.16.6",
"markdown-it": "^14.1.0",
"mermaid": "^11.12.2",
"react": "^19.2.3",
"sanitize-html": "^2.17.0",
"satori": "^0.19.1",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.18",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/sanitize-html": "^2.16.0"
}
}