forked from Galactic/modmail
34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"name": "modmail",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"author": "Navy <navydotgif@gmail.com>",
|
|
"license": "MIT",
|
|
"description": "Modmail bot with eventual integration with Galactic Bot's API",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "yarn build && node --enable-source-maps build/index.js",
|
|
"build": "tsc --build",
|
|
"lint": "eslint src/ --fix",
|
|
"dev": "nodemon -e js --delay 5 --ignore *.json build/index.js",
|
|
"dockerpub": "docker build . --tag navydotgif/modmail:latest && docker push navydotgif/modmail:latest "
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.24.3",
|
|
"@babel/preset-env": "^7.24.3",
|
|
"@babel/preset-typescript": "^7.24.1",
|
|
"@typescript-eslint/eslint-plugin": "^7.3.1",
|
|
"@typescript-eslint/parser": "^7.3.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"nodemon": "^2.0.7"
|
|
},
|
|
"dependencies": {
|
|
"@navy.gif/logger": "^2.5.4",
|
|
"discord.js": "^14.14.1",
|
|
"moment": "^2.29.4",
|
|
"typescript": "^5.4.3"
|
|
},
|
|
"packageManager": "yarn@4.1.1"
|
|
}
|