-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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": "price-tracker",
"version": "1.0.0",
"description": "A telegram bot which can track prices for amazon and flipkart products. (Soon more)",
"main": "bot.js",
"scripts": {
"test": " nodemon bot.js --watch ./ --ignore *.json",
"start": " node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AffanTheBest/price-tracker.git"
},
"type": "module",
"keywords": [
"price-tracker",
"amazon",
"flipkart",
"ecommerce",
"tracker",
"telegram",
"bot"
],
"author": "https://github.com/AffanTheBest",
"license": "https://github.com/AffanTheBest/price-tracker/blob/main/LICENSE",
"bugs": {
"url": "https://github.com/AffanTheBest/price-tracker/issues"
},
"homepage": "https://github.com/AffanTheBest/price-tracker#readme",
"dependencies": {
"axios": "^0.22.0",
"cheerio": "^1.0.0-rc.10",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"grammy": "^1.5.4",
"https-proxy-agent": "^7.0.2",
"mongodb": "^4.9.0"
}
}