-
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.16 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.16 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": "findit-studio-site",
"type": "module",
"version": "0.0.1",
"scripts": {
"predev": "npm run check:content:soft",
"dev": "astro dev",
"build": "npm run check:content && ASTRO_TELEMETRY_DISABLED=1 astro build",
"build:preview": "npm run check:content:soft && ASTRO_TELEMETRY_DISABLED=1 astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"test:watch": "vitest",
"check:content": "node scripts/content-health.mjs",
"check:content:soft": "CONTENT_HEALTH_STRICT=0 node scripts/content-health.mjs",
"check:perf": "node scripts/perf-budget.mjs"
},
"dependencies": {
"@astrojs/mdx": "^4.3.13",
"@astrojs/sitemap": "^3.7.0",
"@astrojs/starlight": "^0.32.6",
"@fontsource/instrument-serif": "^5.2.8",
"@fontsource/space-grotesk": "^5.2.10",
"@supabase/supabase-js": "^2.98.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.4",
"@vercel/analytics": "^1.6.1",
"astro": "^5.17.1",
"gray-matter": "^4.0.3",
"resend": "^6.9.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.13",
"tailwindcss": "^4.1.13",
"vitest": "^4.0.18"
}
}