feat: scaffold application
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 18s

This commit is contained in:
2025-07-03 20:08:30 -07:00
parent 2752f286df
commit 452f7bb35b
37 changed files with 12484 additions and 11 deletions

24
server/package.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "server",
"version": "0.0.0",
"description": "",
"main": "prod/index.js",
"type": "module",
"scripts": {
"lint": "eslint ./src --max-warnings 0",
"build": "tsc",
"start": "op run --env-file=./prod.env -- node ./prod/index.js",
"test": "echo 'No tests yet' && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.12.3",
"dependencies": {
"@nhcarrigan/logger": "1.0.0",
"fastify": "5.4.0"
},
"devDependencies": {
"@types/node": "24.0.10"
}
}