This repository has been archived by the owner on Jul 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.74 KB
/
package.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"version": "1.0.0",
"name": "kamado-tanjiro",
"description": "A discord moderation bot.",
"dependencies": {
"@discordjs/builders": "0.12.0",
"@sapphire/decorators": "4.3.8",
"@sapphire/discord.js-utilities": "4.11.3",
"@sapphire/framework": "2.5.1",
"@sapphire/plugin-hmr": "1.2.2",
"@sapphire/plugin-scheduled-tasks": "2.3.5",
"@sapphire/plugin-subcommands": "2.2.2",
"@sapphire/stopwatch": "1.4.1",
"@sapphire/utilities": "3.7.0",
"bull": "4.7.0",
"chalk": "4.1.2",
"common-tags": "1.8.2",
"discord.js": "13.6.0",
"dotenv": "16.0.0",
"mongodb": "3.7.3",
"petitio": "1.4.0",
"typeorm": "0.2.44"
},
"scripts": {
"start": "ts-node -r dotenv/config src",
"compile": "rimraf dist && tsc",
"build": "rimraf dist && tsc",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"tests": "npm run compile && npm run lint",
"tests:fix": "npm run compile && npm run lint:fix"
},
"engines": {
"node": ">=v16.x"
},
"devDependencies": {
"@hazmi35/eslint-config": "8.1.1",
"@types/bull": "3.15.8",
"@types/common-tags": "1.8.1",
"@types/ms": "0.7.31",
"@types/node": "17.0.14",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"eslint": "8.10.0",
"eslint-plugin-import": "2.25.4",
"rimraf": "3.0.2",
"ts-node": "10.6.0",
"typescript": "4.5.5"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"@hazmi35/eslint-config/typescript"
],
"rules": {
"sort-keys": 0,
"@typescript-eslint/no-non-null-asserted-optional-chain": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/explicit-member-accessibility": 0,
"@typescript-eslint/no-unnecessary-condition": 0,
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-extraneous-class": 0,
"@typescript-eslint/member-ordering": 0,
"@typescript-eslint/restrict-template-expressions": 0,
"no-eq-null": 0,
"no-negated-condition": 0,
"@typescript-eslint/prefer-optional-chain": 0,
"@typescript-eslint/no-unsafe-argument": 0,
"@typescript-eslint/naming-convention": 0,
"@typescript-eslint/no-base-to-string": 0,
"@typescript-eslint/no-shadow": 0,
"max-len": 0,
"class-methods-use-this": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/no-non-null-asserted-nullish-coalescing": 0,
"max-params": 0
},
"ignorePatterns": []
}
}