-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 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
48
{
"name": "freebrunch-discord-bot",
"version": "1.0.1",
"engines": {
"node": ">=v18.12.0"
},
"description": "freeBrunch's Discord Bot",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"local": "set NODE_ENV=local&&npm start",
"test": "node test.js",
"lint": "eslint --fix --ext .js,.jsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bthomas2622/freebrunch-discord-bot.git"
},
"keywords": [
"apex",
"legends",
"discord",
"bot"
],
"author": "Ben Thomas",
"license": "MIT",
"bugs": {
"url": "https://github.com/bthomas2622/freebrunch-discord-bot/issues"
},
"homepage": "https://github.com/bthomas2622/freebrunch-discord-bot#readme",
"dependencies": {
"@discordjs/builders": "^1.4.0",
"@discordjs/rest": "^1.4.0",
"axios": "^1.6.3",
"dayjs": "^1.11.7",
"discord-api-types": "^0.37.31",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"lowdb": "^5.0.5",
"node-schedule": "^2.1.1",
"pm2": "^5.2.2"
},
"devDependencies": {
"eslint": "^8.33.0",
"eslint-config-eslint": "^7.0.0"
}
}