-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "mit-identibot",
"version": "1.0.0-dev",
"description": "An open-source Discord bot written in Node.js that verifies individuals' affiliations with MIT, grants them roles in a Discord server, and stores information about them in a database backend.",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZelnickB/mit-identibot.git"
},
"author": "Benjamin N. Zelnick",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ZelnickB/mit-identibot/issues"
},
"homepage": "https://github.com/ZelnickB/mit-identibot#readme",
"dependencies": {
"bufferutil": "^4.0.9",
"cookie-parser": "^1.4.7",
"discord-api-types": "^0.37.116",
"discord.js": "^14.17.3",
"express": "^4.21.2",
"hbs": "^4.2.0",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"mongodb": "^6.12.0",
"openid-client": "^6.1.7",
"utf-8-validate": "^6.0.5",
"yaml": "^2.7.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"eslint": "9.x",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-promise": "^7.2.1",
"globals": "^15.14.0"
}
}