Files
jmartgraphix.com/package.json
T
jmartin ff37533037 Add Flickr photostream import as Photography
Import public photos from samuraijkm (NSID resolve + Flickr REST),
tag Photography, with admin UI re-run and CLI support.
2026-07-24 11:35:57 -04:00

27 lines
796 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",
"import:flickr": "npm run import:flickr -w server"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"engines": {
"node": ">=20"
}
}