feat: initial prototype
Node.js CI / Lint and Test (pull_request) Successful in 45s

This commit is contained in:
2025-08-14 23:12:02 -07:00
parent f67291b8da
commit 15ecbf5bbe
35 changed files with 6265 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
{
"name": "pavelle",
"version": "0.0.0",
"description": "Discord bot that allows you to throw things (like cake) at your fellow members.",
"main": "index.js",
"type": "module",
"scripts": {
"build": "prisma generate && tsc",
"lint": "eslint src --max-warnings 0",
"start": "op run --env-file=prod.env -- node prod/index.js",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.14.0",
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/node": "24.2.1",
"@types/node-schedule": "2.1.8",
"eslint": "9.33.0",
"prisma": "6.14.0",
"typescript": "5.9.2"
},
"dependencies": {
"@nhcarrigan/logger": "1.0.0",
"@prisma/client": "6.14.0",
"discord.js": "14.21.0",
"fastify": "5.5.0",
"node-schedule": "2.1.1"
}
}