-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.46 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
49
50
51
52
53
54
55
{
"name": "charliespring",
"version": "0.3.0-dev",
"description": "A discord bot for our HeartStopper server",
"main": "src/index.js",
"private": "true",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"yarn": ">=1.22.15"
},
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js --mode=dev",
"commands": "node src/index.js --mode=global",
"commands:guild": "node src/index.js --mode=guild",
"commands:purge": "node src/index.js --mode=purgeCommands",
"commands:purgeGlobal": "node src/index.js --mode=purgeGlobalCommands",
"commands:docs": "node src/index.js --mode=generateDocs",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --forceExit",
"test:cov": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --forceExit --coverage"
},
"author": {
"name": "mkevenaar"
},
"contributors": [
{
"name": "Lucxjo"
},
{
"name": "davidzwa"
}
],
"dependencies": {
"cheerio": "1.0.0",
"discord.js": "14.16.3",
"dotenv": "16.4.5",
"html-to-text": "9.0.5",
"mongoose": "8.8.0",
"node-fetch": "3.3.2",
"rss-parser": "3.13.0",
"topgg-autoposter": "2.0.2",
"yargs": "17.7.2"
},
"devDependencies": {
"all-contributors-cli": "6.26.1",
"cross-env": "7.0.3",
"jest": "29.7.0",
"jest-util": "29.7.0",
"mongodb-memory-server": "10.1.2",
"nodemon": "3.1.7",
"prettier": "3.3.3"
}
}