-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
56
{
"name": "stock-alert-bot",
"version": "4.0.0",
"description": "Get alerts when items come in stock",
"type": "module",
"main": "main.js",
"scripts": {
"start": "node src/main.js",
"settings": "node server/index.js",
"eslint": "eslint",
"eslintFix": "eslint --fix",
"eslintFixAll": "eslint --fix .",
"prettier": "prettier",
"prettierAll": "prettier --write ."
},
"dependencies": {
"aws-sdk": "^2.1419.0",
"axios": "^0.21.4",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"chromedriver": "^114.0.3",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"envfile": "^6.18.0",
"express": "^4.18.2",
"https-proxy-agent": "^5.0.1",
"moment": "^2.29.4",
"node-fetch": "^2.6.12",
"node-notifier": "^9.0.1",
"nodemailer": "^6.9.4",
"open": "^7.4.2",
"pushover-js": "^1.3.2",
"random-seed": "^0.3.0",
"random-useragent": "^0.5.0",
"selenium-webdriver": "^4.10.0",
"tmp": "^0.2.1",
"twilio": "^3.84.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dezryth/StockAlertBotEnhanced.git"
},
"author": "Scott Christian",
"license": "MIT",
"bugs": {
"url": "https://github.com/dezryth/StockAlertBotEnhanced/issues"
},
"homepage": "https://github.com/dezryth/StockAlertBotEnhanced#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-unicorn": "^29.0.0",
"prettier": "^2.8.8"
}
}