-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 714 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 714 Bytes
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
{
"name": "spookybot",
"version": "2.0.0",
"description": "A spooky Discord bot",
"exports": "./core.js",
"repository": "https://github.com/LucasCtrl/SpookyBot.git",
"author": "LucasCtrl <lucasalt@protonmail.com>",
"license": "MIT",
"private": true,
"type": "module",
"node": "^12.20.0 || ^14.13.1 || >=16.0.0",
"dependencies": {
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"mongoose": "^6.0.11"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.13",
"prettier": "^2.4.1"
},
"scripts": {
"dev": "nodemon --inspect ./core.js",
"start": "node ./core.js"
}
}