-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
53 lines (53 loc) · 1.3 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
{
"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 --write",
"prettierAll": "prettier --write ."
},
"dependencies": {
"aws-sdk": "^2.833.0",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"envfile": "^6.14.0",
"express": "^4.17.1",
"https-proxy-agent": "^5.0.0",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"node-notifier": "^9.0.1",
"nodemailer": "^6.4.17",
"open": "^7.3.0",
"random-seed": "^0.3.0",
"random-useragent": "^0.5.0",
"tmp": "^0.2.1",
"twilio": "^3.58.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Prince25/StockAlertBot.git"
},
"author": "Prabhjot Singh",
"license": "MIT",
"bugs": {
"url": "https://github.com/Prince25/StockAlertBot/issues"
},
"homepage": "https://github.com/Prince25/StockAlertBot#readme",
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-unicorn": "^29.0.0",
"prettier": "^2.2.1"
}
}