-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "quotobot",
"version": "2.5.1",
"description": "A Discord bot that tells quotes",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon --watch .env --watch . --watch ./db --watch ./data -e js,json,db",
"count": "node ./db/countQuotes.js",
"add": "node ./db/addQuote.js",
"lint": "eslint .",
"relock": "npm i --package-lock-only",
"changeAvatar": "node extras/changeBotAvatar.js",
"updateqb": "git checkout master && git pull origin && rm -rf ./node_modules && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Team-Gigabyte/quotobot"
},
"author": "Team Gigabyte",
"license": "MIT",
"bugs": {
"url": "https://github.com/Team-Gigabyte/quotobot/issues"
},
"homepage": "https://quotobot.js.org",
"devDependencies": {
"eslint": "^8.57.0",
"nodemon": "^3.1.7"
},
"dependencies": {
"chalk": "^4.1.2",
"country-flag-emoji": "^1.0.3",
"discord.js": "^12.5.3",
"dotenv": "^16.4.5",
"leagueapiwrapper": "^2.5.0",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0",
"spech": "^0.2.1",
"sqlite3": "^5.1.7"
},
"engines": {
"node": "18.x"
}
}