-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 958 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 958 Bytes
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
{
"name": "personal-site",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "export $(cat .env | xargs); wrangler pages dev --proxy 4321 --binding CONTACT_WEBHOOK_URL=$CONTACT_WEBHOOK_URL --binding TURNSTILE_SECRET_KEY=$TURNSTILE_SECRET_KEY -- astro dev",
"deploy:prod": "astro build; wrangler pages publish ./dist",
"deploy:dev": "astro build; wrangler pages publish --branch preview ./dist",
"astro": "astro"
},
"devDependencies": {
"@astrojs/sitemap": "^3.4.2",
"@astrojs/svelte": "^7.1.0",
"@cloudflare/workers-types": "^4.20250813.0",
"@tailwindcss/typography": "^0.5.16",
"astro": "^5.12.9",
"reading-time": "^1.5.0",
"sharp": "^0.34.3",
"svelte": "^5.38.1",
"tailwindcss": "^4.1.11",
"wrangler": "^4.29.1"
},
"dependencies": {
"@astrojs/mdx": "^4.3.3",
"@tailwindcss/vite": "^4.1.11",
"astro-expressive-code": "^0.41.3"
}
}