-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.67 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
{
"name": "folder",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"db:migrate": "wrangler d1 execute folder-db --file=schema.sql",
"db:migrate:remote": "wrangler d1 execute folder-db --remote --file=schema.sql",
"db:migrate:local": "wrangler d1 execute folder-db --local --file=schema.sql",
"db:fix-slugs": "wrangler d1 execute folder-db --file=migrations/001_lowercase_slugs.sql",
"db:fix-slugs:remote": "wrangler d1 execute folder-db --remote --file=migrations/001_lowercase_slugs.sql",
"db:fix-slugs:local": "wrangler d1 execute folder-db --local --file=migrations/001_lowercase_slugs.sql",
"db:add-last-modified": "wrangler d1 execute folder-db --file=migrations/002_add_last_modified_at.sql",
"db:add-last-modified:remote": "wrangler d1 execute folder-db --remote --file=migrations/002_add_last_modified_at.sql",
"db:add-last-modified:local": "wrangler d1 execute folder-db --local --file=migrations/002_add_last_modified_at.sql",
"staging": "npm run build && wrangler dev --env staging --assets ./dist --script ./dist/_worker.js/index.js"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.12",
"@astrojs/react": "^4.4.2",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"astro": "^5.15.8",
"hono": "^4.11.4",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"typescript": "^5.8.3",
"wrangler": "^4.69.0"
},
"overrides": {
"wrangler": "^4.69.0",
"undici": "^7.18.2"
}
}