-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 871 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 871 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
{
"name": "holler",
"version": "0.1.0",
"description": "Lightweight feedback board. HTMX + Cloudflare Workers + D1.",
"type": "module",
"scripts": {
"dev": "wrangler d1 migrations apply holler-db --local && wrangler dev",
"build": "wrangler deploy --dry-run --outdir dist",
"deploy": "wrangler d1 migrations apply DB --remote && wrangler deploy",
"test": "npm run build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wassertim/holler.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wassertim/holler/issues"
},
"homepage": "https://github.com/wassertim/holler#readme",
"dependencies": {
"hono": "^4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4",
"husky": "^9.1.7",
"wrangler": "^4.61.1"
}
}