-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 894 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
{
"name": "mmbansbot",
"version": "1.0.0",
"description": "Manages matchmaking bans in the IOSoccer Sudamérica Discord server.",
"main": "index.js",
"bin": "index.js",
"scripts": {
"start": "ts-node index.ts",
"start:prod": "ENV=production ts-node index.ts",
"dev": "nodemon src -e ts,json --exec 'ts-node index.ts'",
"deploy-commands": "ts-node deploy-commands.ts"
},
"author": "allavaz",
"license": "ISC",
"dependencies": {
"@discordjs/builders": "^0.8.2",
"@discordjs/rest": "^0.1.0-canary.0",
"discord-api-types": "^0.24.0",
"discord.js": "^14.9.0",
"dotenv": "^16.0.0",
"luxon": "^2.5.2",
"mongodb": "^5.8.0"
},
"devDependencies": {
"@types/luxon": "^3.3.0",
"@types/node": "^18.15.11",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}