aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 87a8330b3da4a9db0c5e2782c44d75032b28c865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
	"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.3",
		"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"
	}
}