forked from casperiv0/ghostybot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.36 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
{
"name": "ghostybotv2",
"version": "1.0.0",
"description": "A Custom Discord bot with a lot of commands for Discord communities.",
"main": "src/index.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"format": "eslint --ext .js --fix",
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"build": "next build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.+(js)": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Dev-CasperTheGhost/ghostybot"
},
"bugs": {
"url": "https://github.com/Dev-CasperTheGhost/ghostybot/issues",
"email": "casper.iversen2@gmail.com"
},
"homepage": "https://github.com/Dev-CasperTheGhost/ghostybot#readme",
"keywords": [
"discord-bot",
"discord.js",
"discord-js"
],
"author": "Dev-CasperTheGhost",
"license": "MIT",
"dependencies": {
"@discordjs/opus": "^0.3.3",
"@k3rn31p4nic/google-translate-api": "^1.1.1",
"alexflipnote.js": "^2.3.1",
"chalk": "^4.1.0",
"cows": "^2.1.0",
"cowsay": "^1.4.0",
"discord-giveaways": "^4.2.1",
"discord-player": "^3.0.3",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"erlpack": "github:discord/erlpack",
"eslint-plugin-react": "^7.21.5",
"ffmpeg": "0.0.4",
"figlet": "^1.5.0",
"fluent-ffmpeg": "^2.1.2",
"google-play-scraper": "^8.0.2",
"hastebin-gen": "^2.0.5",
"image-gen-discord": "^1.0.2",
"imdb-api": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"mathjs": "^8.1.0",
"mojang-api": "0.0.2",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.32",
"mongoose": "^5.11.7",
"ms": "^2.1.3",
"nekos.life": "^2.0.7",
"next": "^10.0.3",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.6",
"nookies": "^2.5.0",
"one-liner-joke": "^1.2.0",
"opusscript": "0.0.7",
"qs": "^6.9.4",
"randomcolor": "^0.6.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tnai": "^1.0.5",
"trev": "^2.0.8",
"twemoji-parser": "^13.0.0",
"wikijs": "^6.0.1",
"word-definition": "^2.1.6"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.5",
"lint-staged": "^10.5.3"
}
}