mod-bot/package.json

52 lines
1.6 KiB
JSON
Raw Normal View History

2024-05-12 01:52:39 -07:00
{
"name": "naomis-moderation-bot",
2024-07-07 13:04:34 -07:00
"version": "1.3.0",
2024-05-12 01:52:39 -07:00
"description": "A public paid moderation bot for Discord.",
"main": "prod/index.js",
"scripts": {
"audit": "knip",
"prebuild": "rm -rf prod && prisma generate",
"build": "tsc",
"lint": "eslint src --max-warnings 0 && prettier src --check",
2024-07-07 12:12:43 -07:00
"start": "op run --env-file='./prod.env' -- node prod/index.js",
"test": "echo 'no tests yet'",
"scan": "SONAR_TOKEN='op://Environment Variables - Development/SonarCloud/mod-bot' op run -- sonar-scanner -Dsonar.organization=nhcarrigan -Dsonar.projectKey=nhcarrigan_mod-bot -Dsonar.sources=. -Dsonar.host.url=https://sonarcloud.io"
2024-05-12 01:52:39 -07:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhcarrigan/mod-bot.git"
},
"author": "Naomi Carrigan",
"bugs": {
"url": "https://github.com/nhcarrigan/mod-bot/issues"
},
"engines": {
"node": "22",
2024-06-30 20:08:20 -07:00
"pnpm": "9"
2024-05-12 01:52:39 -07:00
},
"homepage": "https://github.com/nhcarrigan/mod-bot#readme",
"devDependencies": {
"@nhcarrigan/eslint-config": "3.2.0",
"@nhcarrigan/prettier-config": "3.2.0",
"@nhcarrigan/typescript-config": "3.0.0",
"@types/express": "4.17.21",
2024-07-07 12:47:29 -07:00
"@types/node-schedule": "2.1.7",
2024-05-12 01:52:39 -07:00
"eslint": "8.57.0",
"knip": "5.15.0",
"prettier": "3.2.5",
"prisma": "5.13.0",
"typescript": "5.4.5"
},
"dependencies": {
"@octokit/rest": "20.1.1",
"@prisma/client": "5.13.0",
"discord.js": "14.15.2",
"dotenv": "16.4.5",
"express": "4.19.2",
"node-html-to-image": "4.0.0",
2024-07-07 12:47:29 -07:00
"node-schedule": "2.1.1",
2024-08-13 08:13:03 -07:00
"prom-client": "15.1.3",
2024-05-12 01:52:39 -07:00
"winston": "3.13.0"
}
}