This commit is contained in:
2026-02-02 07:13:26 -06:00
parent b6f78e4659
commit e37c64fb1d
6 changed files with 2240 additions and 7 deletions

View File

@@ -5,8 +5,8 @@
"main": "index.js",
"type": "module",
"scripts": {
"dev": "node --watch src/index.js",
"start": "node src/index.js"
"dev": "dotenvx run -f .env -- node --watch src/index.js",
"start": "dotenvx run -f .env -- node src/index.js"
},
"repository": {
"type": "git",
@@ -16,11 +16,18 @@
"author": "",
"license": "ISC",
"dependencies": {
"@dotenvx/dotenvx": "^1.52.0",
"drizzle-orm": "^0.45.1",
"express": "^5.2.1",
"pg": "^8.18.0",
"wscat": "^6.1.0"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@types/ws": "^8.18.1"
"@types/pg": "^8.16.0",
"@types/ws": "^8.18.1",
"drizzle-kit": "^0.31.8",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}