-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.6 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "baldbeardedbuilder.com",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@9.1.1",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "pnpm gen && astro dev",
"build": "astro build",
"prebuild": "pnpm gen",
"preview": "astro preview",
"gen": "pnpm fonts && pnpm themes && pnpm taxonomy && pnpm redirects",
"fonts": "node scripts/gen-fonts.mjs",
"themes": "node scripts/gen-themes.mjs",
"taxonomy": "node scripts/gen-taxonomy.mjs",
"redirects": "node scripts/gen-redirects.mjs",
"gen:check": "pnpm gen && git diff --exit-code src/styles/themes.css src/styles/fonts.generated.css src/lib/themes.generated.ts src/lib/ec-themes.generated.mjs src/lib/heading-fallbacks.generated.json src/config/taxonomy.json public/_redirects",
"test": "node --test \"tests/**/*.test.mjs\"",
"check": "astro check",
"types": "node scripts/gen-types.mjs",
"astro": "astro",
"postbuild": "pagefind --site dist --exclude-selectors \"[data-pagefind-ignore]\" && node scripts/stamp-build.mjs",
"a11y": "node scripts/a11y.mjs",
"perf": "node scripts/lighthouse.mjs",
"video:meta": "node --env-file-if-exists=.env scripts/gen-video-meta.mjs",
"transcripts:csv": "node scripts/gen-video-transcripts.mjs",
"check:migrations": "node scripts/check-migrations.mjs",
"check:dist": "node scripts/check-dist.mjs",
"check:layout": "node scripts/check-layout.mjs",
"check:share": "node scripts/check-share.mjs",
"check:aria": "node scripts/check-aria.mjs",
"check:emails": "node scripts/check-emails.mjs",
"check:headings": "node scripts/check-headings.mjs",
"verify:deploy": "node scripts/verify-deploy.mjs"
},
"dependencies": {
"@astrojs/netlify": "^6.6.5",
"@astrojs/preact": "^4.1.3",
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.7.0",
"@fontsource-variable/anybody": "^5.3.0",
"@fontsource-variable/chivo": "^5.3.0",
"@fontsource-variable/martian-mono": "^5.3.0",
"@fontsource/archivo-black": "^5.3.0",
"@supabase/ssr": "^0.12.4",
"@supabase/supabase-js": "^2.111.0",
"astro": "^5.17.1",
"astro-expressive-code": "^0.41.6",
"marked": "^17.0.1",
"preact": "^10.29.7"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@axe-core/playwright": "^4.12.1",
"@netlify/functions": "^5.3.0",
"axe-core": "^4.12.1",
"chrome-launcher": "^1.2.1",
"gray-matter": "^4.0.3",
"lighthouse": "^13.4.1",
"pagefind": "^1.5.2",
"playwright": "^1.62.1",
"shiki": "^3.22.0",
"typescript": "^5.9.3",
"yaml": "^2.9.0",
"youtubei.js": "^17.2.0"
}
}