- Dockerfiles: server (Bun, runs migrations then starts) and web (Vite build served by nginx with SPA fallback); .dockerignore - docker-compose.prod.yml (postgres + server + web) ready for Dokploy, with uploads/pgdata volumes and .env.production.example - README: deployment (Dokploy) + gitflow/versioning sections, Images mode, bots, i18n; CHANGELOG.md - bump packages to 0.1.0 Docker images built and validated end-to-end: server migrates + serves /health + /api/categories; web serves the SPA with VITE_SERVER_URL baked in. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
480 B
JSON
23 lines
480 B
JSON
{
|
|
"name": "@nerdware/shared",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint",
|
|
"format": "prettier --write \"**/*.ts\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./domain": "./src/domain.ts",
|
|
"./events": "./src/events.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10",
|
|
"eslint": "^10",
|
|
"globals": "^17",
|
|
"typescript": "~6",
|
|
"typescript-eslint": "^8"
|
|
}
|
|
}
|