-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 904 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": "vu-discord-bot",
"version": "1.0.0",
"engines": {
"node": "16.x"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node .",
"lint": "eslint .",
"dev": "nodemon . --ignore log.json --ignore remindLog.json",
"build": "node build.js",
"devbuild": "node devbuild.js"
},
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^0.7.0",
"@discordjs/rest": "^0.1.0-canary.0",
"discord-api-types": "^0.24.0",
"discord.js": "^13.2.0",
"dotenv": "^10.0.0",
"got": "11",
"mathjs": "^9.5.1",
"mysql": "^2.18.1",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.5",
"nodemon": "^2.0.15",
"numeral": "^2.0.6",
"pino": "^7.0.0-rc.9",
"sql": "^0.78.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"eslint": "^8.1.0"
}
}