Initial commit: auth

This commit is contained in:
jtricerolph 2026-07-01 12:09:54 +00:00
commit 372e71c8f5
11 changed files with 500 additions and 0 deletions

17
package.json Normal file
View file

@ -0,0 +1,17 @@
{
"name": "hnf-auth",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js"
},
"dependencies": {
"@fastify/cookie": "^9.4.0",
"@fastify/cors": "^9.0.1",
"bcryptjs": "^2.4.3",
"fastify": "^4.28.1",
"jose": "^5.9.6",
"pg": "^8.13.1"
}
}