-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "contraBOT",
"version": "1.0.0",
"description": "A Discord bot that checkes the price of games and notifies users/servers of wishlisted games and game updates",
"main": "main.js",
"scripts": {
"dev": "cross-env NODE_ENV=development node main.js",
"prod": "cross-env NODE_ENV=production node main.js",
"dev:mon": "cross-env NODE_ENV=development nodemon main.js",
"prod:mon": "cross-env NODE_ENV=production nodemon main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bentodaniel/contraBOT.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bentodaniel/contraBOT/issues"
},
"homepage": "https://github.com/bentodaniel/contraBOT#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.11",
"console-stamp": "^3.0.6",
"cross-env": "^7.0.3",
"discord.js": "^14.9.0",
"dotenv": "^16.0.1",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.8",
"nodemon": "^2.0.19",
"request": "^2.88.2",
"xhr-request": "^1.1.0"
},
"nodemonConfig": {
"delay": 2000,
"ignore": []
}
}