Files
maribelle/package.json
T
minori 47b686cdf7
Node.js CI / CI (push) Successful in 22s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 56s
Merge pull request 'deps: update typescript to 5.9.3' (#12) from dependencies/update-typescript into main
2026-03-02 07:01:19 -08:00

32 lines
911 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.8",
"@vitest/coverage-istanbul": "3.2.4",
"eslint": "9.30.0",
"typescript": "5.9.3",
"vitest": "3.2.4"
},
"dependencies": {
"@nhcarrigan/logger": "1.1.1",
"discord.js": "14.21.0",
"node-schedule": "2.1.1"
}
}