diff options
author | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-04-27 21:06:22 -0600 |
---|---|---|
committer | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-04-27 21:06:22 -0600 |
commit | 763fb7d98c3accbb21adf035a7cf0a83cb9533c9 (patch) | |
tree | 9d333fbca2a2a8e19d79904a4e29226174925cfc /package.json | |
download | tanzanite-763fb7d98c3accbb21adf035a7cf0a83cb9533c9.tar.gz tanzanite-763fb7d98c3accbb21adf035a7cf0a83cb9533c9.tar.bz2 tanzanite-763fb7d98c3accbb21adf035a7cf0a83cb9533c9.zip |
legit just copy utilibot v2 code
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..e8b966b --- /dev/null +++ b/package.json @@ -0,0 +1,73 @@ +{ + "name": "utilibot", + "version": "2.0.0", + "description": "A utility bot for discord", + "main": "dist/bot.js", + "repository": "https://github.com/tyman-productions/utilibot", + "author": "TymanWasTaken <tyman@tyman.tech>", + "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" + } +} |