Files
memer/backend/package.json

27 lines
575 B
JSON
Raw Normal View History

2026-03-28 01:06:30 -05:00
{
"name": "memer-backend",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@fastify/multipart": "^8.3.0",
"@fastify/static": "^7.0.4",
"better-sqlite3": "^9.4.3",
"fastify": "^4.27.0",
"sharp": "^0.33.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/node": "^20.12.7",
"@types/uuid": "^9.0.8",
"tsx": "^4.9.3",
"typescript": "^5.4.5"
}
}