-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 988 Bytes
/
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
{
"name": "discord-bot-goldi",
"version": "1.2.0",
"description": "Goldi is a Discord bot which uses the awesome discordjs library",
"license": "MIT",
"keywords": [
"bot",
"discord"
],
"author": "Patrick Hintermayer",
"scripts": {
"start": "node ./src/main.js",
"dev": "nodemon ./src/main.js",
"deploy": "openode deploy",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
},
"dependencies": {
"@vercel/node": "^1.12.1",
"date-and-time": "^1.0.0",
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"fastify": "^3.24.1",
"mongoose": "^5.12.15",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.1",
"node-html-parser": "^4.1.3",
"twitch": "^4.5.5",
"twitch-auth": "^4.6.0"
},
"devDependencies": {
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.7",
"openode": "^2.1.0"
}
}