-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "prostdev",
"type": "module",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && pagefind --site dist",
"preview": "astro preview",
"fetch-heroes": "node scripts/fetch-hero-images.mjs",
"remigrate": "node scripts/remigrate-posts.mjs",
"recover-gists": "node scripts/recover-gists.mjs",
"check-dw-version": "node scripts/check-dataweave-version.mjs",
"sync-youtube": "node scripts/sync-youtube-metadata.mjs",
"youtube-analytics": "node scripts/youtube-analytics.mjs",
"analyze-video": "node scripts/analyze-video.mjs",
"transcribe": "node scripts/transcribe-video.mjs",
"test": "vitest run",
"test:watch": "vitest",
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^4.2.0",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.3.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.0",
"@vercel/og": "^0.11.1",
"astro": "^5.7.0",
"tailwindcss": "^4.1.0"
},
"devDependencies": {
"pagefind": "^1.3.0",
"vitest": "^4.1.10"
}
}