Files
RAPPORT-HOST/server/package.json
T
karim 6290475ea3 Initial: RAPPORT-HOST Iteration 1 (proprietär)
Kommerzielle Hosting-/Abo-Plattform für Rapport-Instanzen.

- React-Frontend (Vite/JSX): Landing, Register, Login, Plans, Dashboard
- Node/Express-Backend: Auth (bcrypt+JWT), Stripe-Billing, Provisioning
- HOST-Postgres-Schema: accounts, subscriptions, instances
- Provisioning-Interface + Modell-A-Adapter (Studio im geteilten Stack)
- MOCK-Modus: voller End-to-End-Flow ohne Stripe/Rapport-Stack testbar
- Idempotentes Fulfillment (Upsert auf stripe_subscription_id)
- docker-compose für lokale host-db; identisch auf Hetzner deploybar

E2E lokal verifiziert: Register -> Checkout(mock) -> Instanz -> Idempotenz.

Lizenz: proprietär (kein AGPL-Code eingebunden, nur Netzwerk-API zur Familie).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-05-30 15:37:33 +02:00

15 lines
337 B
JSON

{
"name": "rapport-host-server",
"version": "0.1.0",
"type": "module",
"private": true,
"description": "RAPPORT-HOST Backend — Auth, Stripe-Billing, Instanz-Provisioning",
"dependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.21.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.0",
"stripe": "^17.0.0"
}
}