Files
Art-gallery/package.json
T
Danila KhodjaefandCursor d8385d83d6 Add painting detail navigation, influence lamps, and catalog tooling.
Expand the gallery with prev/next browsing and fullscreen detail view, golden influence lamps and chronological wall layout in 3D halls, and scripts/docs for catalog expansion, influence edges, and multi-source image fetching.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-19 16:35:33 +03:00

40 lines
1.5 KiB
JSON

{
"name": "gallery",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"migrate": "node server/migrate.js",
"migrate:thumbnails": "node -e \"require('./server/db').query(require('fs').readFileSync('./db/migrate-thumbnails.sql','utf8')).then(()=>{console.log('OK');process.exit(0);}).catch(e=>{console.error(e);process.exit(1);})\"",
"seed": "node scripts/seed-wikipedia.js",
"fetch-images": "node scripts/fetch-missing-images.js",
"search-missing-paintings": "node scripts/fetch-missing-images.js",
"fetch-artist-images": "node scripts/fetch-artist-images.js",
"fetch-artist-bios": "node scripts/fetch-artist-bios.js",
"sync-image-paths": "node scripts/sync-image-paths.js",
"regenerate-thumbnails": "node scripts/regenerate-thumbnails.js",
"audit-painting-images": "node scripts/audit-painting-images.js",
"expand-catalog": "node scripts/expand-paintings.js",
"update-influences": "node scripts/update-influences.js",
"server": "node server/index.js",
"dev:server": "nodemon server/index.js",
"dev:client": "npm run dev --prefix client",
"dev": "node server/index.js",
"setup": "node server/migrate.js && node scripts/seed-wikipedia.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"pg": "^8.21.0",
"sharp": "^0.35.1"
},
"devDependencies": {
"nodemon": "^3.1.14"
}
}