-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.15 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.15 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
{
"name": "tinyblog",
"version": "1.0.0",
"description": "A personal blog CMS built on Cloudflare Workers, D1, and R2.",
"private": true,
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"typecheck": "tsc",
"db:migrate:local": "wrangler d1 execute tinyblog-db --local --file=./migrations/0001_schema.sql && wrangler d1 execute tinyblog-db --local --file=./migrations/0002_published_at_site_config.sql && wrangler d1 execute tinyblog-db --local --file=./migrations/0003_site_url.sql",
"db:migrate:remote": "wrangler d1 execute tinyblog-db --remote --file=./migrations/0001_schema.sql && wrangler d1 execute tinyblog-db --remote --file=./migrations/0002_published_at_site_config.sql && wrangler d1 execute tinyblog-db --remote --file=./migrations/0003_site_url.sql"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"highlight.js": "^11.11.1",
"hono": "^4.12.9",
"jose": "^6.2.2",
"marked": "^17.0.5"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260317.1",
"@types/marked": "^5.0.2",
"typescript": "^6.0.2",
"wrangler": "^4.77.0"
}
}