-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 955 Bytes
/
package.json
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.0.3",
"@astrojs/svelte": "^5.0.1",
"@astrojs/tailwind": "^5.0.3",
"@cloudflare/workers-types": "^4.20231218.0",
"@tailwindcss/typography": "^0.5.10",
"astro": "^4.0.6",
"reading-time": "^1.5.0",
"sharp": "^0.33.1",
"svelte": "^4.2.8",
"tailwindcss": "^3.4.0",
"wrangler": "^2.20.2"
},
"dependencies": {
"@astrojs/mdx": "^2.0.1",
"astro-expressive-code": "^0.30.1"
}
}