chore: node project init + deps + logger

This commit is contained in:
root
2026-05-31 01:24:41 +10:00
parent 0ede9fead8
commit 45186f7566
4 changed files with 2836 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "void-server",
"version": "2.0.0-alpha.1",
"type": "module",
"private": true,
"scripts": {
"start": "node server.js",
"migrate": "node lib/db/migrate.js up",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"bcrypt": "^6.0.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"pg": "^8.21.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.7",
"vitest": "^4.1.7"
}
}