Files
jmartgraphix.com/package.json
T
jmartin 43928f7a49 Initial portfolio CMS: Fastify API + Vite SPA
Single-container app with Postgres catalog, Typesense search,
Authelia Remote-User admin, portfolio views, resume/PDF, media
uploads, and ArtStation import tooling.
2026-07-23 17:01:34 -04:00

26 lines
740 B
JSON

{
"name": "jmartgraphix-com",
"version": "1.0.0",
"private": true,
"description": "jmartgraphix portfolio CMS — Fastify API + Vite SPA",
"workspaces": [
"server",
"client"
],
"scripts": {
"dev": "concurrently -n server,client -c blue,green \"npm run dev -w server\" \"npm run dev -w client\"",
"build": "npm run build -w client && npm run build -w server",
"start": "npm run start -w server",
"db:generate": "npm run db:generate -w server",
"db:migrate": "npm run db:migrate -w server",
"db:seed": "npm run db:seed -w server",
"import:artstation": "npm run import:artstation -w server"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"engines": {
"node": ">=20"
}
}