-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 735 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 735 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
{
"name": "doblog",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"db:init": "wrangler d1 execute cf-blog-db --local --file=schema.sql",
"db:seed": "wrangler d1 execute cf-blog-db --local --file=seed.sql",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"hono": "^4.12.14",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.14.7",
"@cloudflare/workers-types": "^4.20260418.1",
"@types/markdown-it": "^14.1.2",
"typescript": "^6.0.3",
"vitest": "^4.1.4",
"wrangler": "^4.83.0"
}
}