modmail/package.json

27 lines
738 B
JSON
Raw Permalink Normal View History

2023-08-13 19:34:04 +02:00
{
"name": "modmail",
"version": "1.0.0",
"main": "index.js",
"author": "Navy <navydotgif@gmail.com>",
"license": "MIT",
"private": false,
"description": "Modmail bot with eventual integration with Galactic Bot's API",
"scripts": {
"start": "node index.js",
"dev": "nodemon --ignore *.json index.js",
"dockerpub": "tsc && docker build . --tag navydotgif/modmail:latest && docker push navydotgif/modmail:latest "
},
"devDependencies": {
"eslint": "^7.28.0",
"nodemon": "^2.0.7"
},
"dependencies": {
"chalk": "^4.0.0",
"diagnostics": "^2.0.2",
"discord.js": "^12.5.3",
"moment": "^2.29.4",
"winston": "^3.3.3",
"winston-transport": "^4.4.0"
}
}