-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "megaman",
"version": "1.0.0",
"description": "Discord Bot for The Robotics Club of Central Florida",
"type": "module",
"engines": {
"node": "^20.0.0"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node deployCommands.js && node .",
"dev": "nodemon .",
"register": "node deployCommands.js",
"lint": "prettier --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/RoboticsClubatUCF/MegaMan.git"
},
"keywords": [
"discord",
"bot",
"robotics"
],
"author": "Vijay Stroup",
"license": "MIT",
"bugs": {
"url": "https://github.com/RoboticsClubatUCF/MegaMan/issues"
},
"homepage": "https://github.com/RoboticsClubatUCF/MegaMan#readme",
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"axios": "^0.21.4",
"cron": "^1.8.2",
"prettier": "3.1.1",
"discord-api-types": "latest",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"nodemon": "^2.0.12"
}
}