Files
jmartgraphix.com/server/package.json
T
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

46 lines
1.3 KiB
JSON

{
"name": "server",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && cp -r src/openapi dist/openapi 2>/dev/null || true",
"start": "node dist/index.js",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate deploy && prisma db seed",
"db:migrate:dev": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:push": "prisma db push",
"import:artstation": "tsx scripts/import-artstation.ts",
"import:flickr": "tsx scripts/import-flickr.ts",
"import:vimeo": "tsx scripts/import-vimeo.ts"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@fastify/cors": "^10.0.2",
"@fastify/multipart": "^9.0.3",
"@fastify/static": "^8.1.0",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.2",
"@prisma/client": "^6.5.0",
"dotenv": "^16.4.7",
"fastify": "^5.2.1",
"fastify-plugin": "^5.0.1",
"fastify-type-provider-zod": "^4.0.2",
"puppeteer": "^24.4.0",
"sharp": "^0.33.5",
"slugify": "^1.6.6",
"typesense": "^2.0.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.10",
"prisma": "^6.5.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}