kneadly/package.json
King Omar aa45ebc769 Kneadly — online booking platform for massage shops
Fresha-style booking: shops sign up, add services/therapists/hours, and get a
public booking page they can drop into their Google Business Profile so
customers book from Maps. Deposits via Stripe stop no-shows.

Stack: Hono + Cloudflare Workers + D1 + Stripe, server-rendered HTML.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-21 19:09:21 +10:00

18 lines
471 B
JSON

{
"name": "kneadly",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"db:migrate": "wrangler d1 execute kneadly --remote --file=schema.sql",
"db:migrate:local": "wrangler d1 execute kneadly --local --file=schema.sql",
"db:seed": "wrangler d1 execute kneadly --remote --file=seed.sql"
},
"dependencies": {
"hono": "^4.6.0"
},
"devDependencies": {
"wrangler": "^4.0.0"
}
}