forked from mkevenaar/NickNelson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "nicknelson",
"version": "0.1.0-dev",
"description": "A discord bot for our HeartStopper server",
"main": "src/index.js",
"private": "true",
"license": "MIT",
"engines": {
"node": ">=16.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",
"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"
}
],
"dependencies": {
"@discordjs/builders": "^0.13.0",
"@discordjs/rest": "^0.4.1",
"discord-api-types": "^0.32.0",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"mongoose": "^6.3.2",
"topgg-autoposter": "^2.0.1",
"yargs": "^17.4.1"
},
"devDependencies": {
"all-contributors-cli": "6.20.0",
"cross-env": "7.0.3",
"jest": "28.1.0",
"jest-util": "28.1.0",
"mongodb-memory-server": "8.5.2",
"nodemon": "2.0.16",
"prettier": "2.6.2"
}
}