separate fe and be, deploy on push to master

This commit is contained in:
Will Freeman
2026-02-02 11:41:29 -07:00
parent ea218998b3
commit db49ac2a98
18 changed files with 525 additions and 420 deletions

21
api/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "deflock-api",
"version": "1.0.0",
"main": "server.ts",
"type": "module",
"scripts": {
"start": "bun server.ts"
},
"dependencies": {
"@fastify/cors": "^10.0.0",
"@sinclair/typebox": "^0.34.48",
"cache-manager": "^7.2.8",
"cache-manager-fs-hash": "^3.0.0",
"fastify": "^5.7.2",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"@types/cache-manager-fs-hash": "^0.0.5",
"@types/node": "^25.2.0"
}
}