c2pa-2026/package.json
DJP aaa0ca6ae2 Initial commit: C2PA Stamping & Verification Tool
Full-stack web application for C2PA content credentials management.

- Backend: Fastify + TypeScript + Drizzle ORM + @contentauth/c2pa-node
- Frontend: React 19 + Vite + Tailwind CSS 4 + Montserrat/Gold theme
- Auth: JWT with 3 roles (viewer, stamper, admin)
- C2PA: Sign files with X.509 certs, verify manifests, custom OMG metadata
- Admin: Manage users, platforms (OMG, Pencil), 29 AI models
- Docker: PostgreSQL 16, Node.js 22 backend, nginx frontend
- Ports: Frontend 3050, Backend 8050, PostgreSQL 5470

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 23:05:51 -05:00

17 lines
428 B
JSON

{
"name": "c2pa-2026",
"version": "1.0.0",
"private": true,
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"dev:backend": "npm run dev --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"build": "npm run build --workspaces",
"docker:up": "docker compose up --build -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f"
}
}