Initial commit: virtual art gallery application.
Express API with PostgreSQL, React/Vite/Three.js frontend, and locally cached artwork images. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"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",
|
||||
"fetch-artist-images": "node scripts/fetch-artist-images.js",
|
||||
"sync-image-paths": "node scripts/sync-image-paths.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"
|
||||
},
|
||||
"devDependencies": {
|
||||
"nodemon": "^3.1.14"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user