Files
jmartin b924ca8a62 Add Vimeo video import with embeds and admin re-run
Import public videos from jmartgraphix as Video (and 3D Animation
when relevant), with player embeds, thumbnails, and dashboard UI.
2026-07-24 12:13:23 -04:00

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