Monorepo with Express + SQLite backend and Vite + React frontend. Features: item CRUD, file uploads with thumbnails, soft delete, item duplication with file copying, autocomplete inputs, stats dashboard. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
600 B
JSON
28 lines
600 B
JSON
{
|
|
"name": "server",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"better-sqlite3": "^11.7.0",
|
|
"cors": "^2.8.5",
|
|
"express": "^5.1.0",
|
|
"multer": "^1.4.5-lts.2",
|
|
"sharp": "^0.34.5",
|
|
"uuid": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.12",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^5.0.0",
|
|
"@types/multer": "^1.4.12",
|
|
"@types/uuid": "^10.0.0",
|
|
"tsx": "^4.19.0"
|
|
}
|
|
}
|