forked from Androz2091/AtlantaBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.94 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "atlantabot",
"version": "4.12.0",
"description": "A very complete Discord bot (more than 70 commands) that uses the Discordjs API!",
"main": "atlanta.js",
"scripts": {
"start": "node .",
"lint": "eslint . --ext .js",
"testcfg": "node scripts/verify-config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Androz2091/AtlantaBot.git"
},
"author": "Androz2091",
"license": "ISC",
"bugs": {
"url": "https://github.com/Androz2091/AtlantaBot/issues"
},
"homepage": "https://github.com/Androz2091/AtlantaBot#readme",
"dependencies": {
"@discord-player/extractor": "^3.0.0",
"@discordjs/opus": "^0.5.0",
"@k3rn31p4nic/google-translate-api": "github:k3rn31p4nic/google-translate-api",
"@sentry/node": "6.3.6",
"@sindresorhus/slugify": "^1.1.0",
"amethyste-api": "github:Androz2091/amethyste-api",
"ascii-table": "0.0.9",
"blague.xyz": "^2.0.4",
"btoa": "^1.2.1",
"canvacord": "^5.1.0",
"canvas": "^2.6.1",
"chalk": "^4.1.0",
"colors-generator": "^0.3.4",
"cron": "^1.7.2",
"dblapi.js": "^2.3.0",
"discord-backup": "^2.1.19",
"discord-canvas": "^1.3.2",
"discord-giveaways": "^4.4.3",
"discord-paginationembed": "^2.1.0",
"discord-player": "^4.1.0",
"discord.js": "discordjs/discord.js",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-session": "^1.17.0",
"figlet": "^1.5.0",
"fortnite": "^4.3.2",
"gamedig": "^3.0.0",
"i18next": "^20.2.2",
"i18next-node-fs-backend": "^2.1.3",
"js-string-cleaner": "^1.0.3",
"lyrics-finder": "^21.7.0",
"markdown-table": "2.0.0",
"mathjs": "^9.0.0",
"md5": "^2.2.1",
"moment": "^2.26.0",
"mongoose": "^5.9.25",
"ms": "^2.1.3",
"string-sanitizer": "^1.1.1"
},
"devDependencies": {
"eslint": "^7.5.0"
},
"eslintConfig": {
"env": {
"commonjs": true,
"es2020": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"prefer-const": [
"error"
],
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"linebreak-style": 0,
"require-atomic-updates": 0
}
},
"eslintIgnore": [
"dashboard/public"
]
}