Server code

This commit is contained in:
2024-11-20 22:31:39 +00:00
parent 6358a7a595
commit c4e4affa7c
10 changed files with 4827 additions and 0 deletions

15
server/package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "blog-server",
"version": "1.0.0",
"dependencies": {
"@fastify/cors": "^8.0.0",
"@fastify/jwt": "^7.0.0",
"@fastify/multipart": "^7.0.0",
"@fastify/static": "^6.0.0",
"bcrypt": "^5.0.1",
"fastify": "^4.0.0",
"marked": "^4.0.0",
"pg": "^8.7.1",
"slugify": "^1.6.0"
}
}