{ "name": "bush-bot", "version": "2.0.0", "description": "A custom bot for Moulberry's Bush", "main": "dist/bot.js", "repository": "https://github.com/NotEnoughUpdates/bush-bot", "author": "Tyman, IRONM00N, and TrashCan", "license": "MIT", "scripts": { "start": "yarn build && node --trace-warnings -r source-map-support/register dist/bot.js", "build": "yarn rimraf dist/ && yarn tsc", "test": "yarn lint && yarn build", "lint": "yarn eslint .", "format": "yarn prettier --write ." }, "devDependencies": { "@types/common-tags": "^1.8.0", "@types/express": "^4.17.11", "@types/node": "^14.14.22", "@types/uuid": "^8.3.0", "@typescript-eslint/eslint-plugin": "^4.14.1", "@typescript-eslint/parser": "^4.14.1", "eslint": "^7.18.0", "eslint-config-prettier": "^8.1.0", "prettier": "^2.2.1", "rimraf": "^3.0.2", "source-map-support": "^0.5.19", "typescript": "^4.1.3" }, "dependencies": { "@top-gg/sdk": "^3.0.9", "body-parser": "^1.19.0", "common-tags": "^1.8.0", "discord-akairo": "^8.1.0", "discord.js": "^12.5.1", "express": "^4.17.1", "got": "^11.8.1", "moment": "^2.29.1", "pg": "^8.5.1", "pg-hstore": "^2.3.3", "sequelize": "^6.5.0", "uuid": "^8.3.2" }, "eslintConfig": { "env": { "es2021": true, "node": true }, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 12, "sourceType": "module" }, "plugins": [ "@typescript-eslint" ], "ignorePatterns": [ "dist", "node_modules" ] }, "prettier": { "useTabs": true, "quoteProps": "consistent", "singleQuote": true, "trailingComma": "none" } }