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>
18 lines
471 B
JSON
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"
|
|
}
|
|
}
|