forked from vanmoortel/demeter-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"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 <[email protected]>",
"license": "MIT",
"dependencies": {
"@twitter-api-v2/plugin-token-refresher": "^1.0.0",
"@types/crypto-js": "^4.1.1",
"async-mutex": "^0.3.2",
"axios": "^0.27.2",
"crypto-js": "^4.1.1",
"discord.js": "^13.3.1",
"dotenv": "^16.0.0",
"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",
"twitter-api-v2": "^1.12.5",
"uuid": "^8.3.2",
"web3.storage": "^3.5.1",
"winston": "^3.3.3"
},
"devDependencies": {
"jest": "^27.4.3"
}
}