-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 915 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": "self-managed-discord",
"version": "0.0.1",
"description": "Discord bot allowing the setting up of a self-managed community",
"main": "src/index.js",
"repository": {
"url": "https://github.com/vanmoortel/self-managed-discord",
"type": "git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "node src/bot.js",
"bot": "node src/bot.js"
},
"type": "module",
"author": "Vanmoortel Nolan <nolan@o2b.dev>",
"license": "MIT",
"dependencies": {
"async-mutex": "^0.3.2",
"discord.js": "^13.3.1",
"heartbeats": "^5.0.1",
"jimp": "^0.16.1",
"lodash.clonedeep": "^4.5.0",
"logform": "^2.3.0",
"lowdb": "^3.0.0",
"moment": "^2.29.1",
"simple-statistics": "^7.7.0",
"twemoji": "^13.1.0",
"uuid": "^8.3.2",
"web3.storage": "^3.5.1",
"winston": "^3.3.3"
},
"devDependencies": {
"jest": "^27.4.3"
}
}