Files
maribelle/package.json
Anna 7e9dc20632
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 11s
feat: add a database client
2025-07-02 10:52:11 -04:00

33 lines
936 B
JSON

{
"name": "standup-bot",
"version": "0.0.0",
"description": "Discord bot to post standup reminders for the Commit Your Code cohort.",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rm -rf prod && tsc",
"lint": "eslint src --max-warnings 0",
"start": "op run --env-file=prod.env --no-masking -- node prod/index.js",
"test": "echo \"No tests yet!\" && exit 0"
},
"keywords": [],
"author": "Naomi Carrigan",
"license": "See license in LICENSE.md",
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/node": "24.0.6",
"@types/node-schedule": "2.1.7",
"@vitest/coverage-istanbul": "3.2.4",
"eslint": "9.30.0",
"typescript": "5.8.3",
"vitest": "3.2.4"
},
"dependencies": {
"@nhcarrigan/logger": "1.0.0",
"discord.js": "14.21.0",
"mongodb": "6.17.0",
"node-schedule": "2.1.1"
}
}