-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "pricegram",
"version": "0.4.0",
"description": "A Telegram bot that tracks Amazon products and sends alerts about price and availabilty changes.",
"main": "app.js",
"scripts": {
"start": "node -r dotenv/config app.js",
"dev": "nodemon -r dotenv/config app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AleG94/Pricegram.git"
},
"keywords": [
"telegram",
"bot",
"price",
"tracker",
"amazon"
],
"author": "Alessandro Genovese",
"license": "MIT",
"bugs": {
"url": "https://github.com/AleG94/Pricegram/issues"
},
"homepage": "https://github.com/AleG94/Pricegram#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.6",
"config": "^3.3.6",
"currency-symbols": "^0.4.1",
"dotenv-cli": "^4.0.0",
"extract-domain": "^2.2.1",
"log4js": "^6.3.0",
"mongoose": "^5.12.4",
"parse-money": "^1.0.12",
"puppeteer": "^8.0.0",
"puppeteer-extra": "^3.1.18",
"puppeteer-extra-plugin-stealth": "^2.7.6",
"telegraf": "^4.3.0",
"telegraf-session-local": "^2.1.0"
},
"devDependencies": {
"eslint": "^7.24.0",
"nodemon": "^2.0.7"
}
}