-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 930 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
32
33
34
{
"name": "mywebsite",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "wrangler pages dev ./dist",
"deploy": "astro build && wrangler pages deploy dist --project-name=nvdk --branch=main --commit-dirty=true",
"seed-posts": "node scripts/seed-posts.mjs",
"test": "vitest run",
"astro": "astro"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.13",
"@astrojs/react": "^4.2.0",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.4.0",
"@fontsource/caveat": "^5.2.8",
"astro": "^5.7.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"roughjs": "^4.6.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260607.1",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"typescript": "~5.9.0",
"vitest": "^4.1.8",
"wrangler": "^4.90.0"
}
}