-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
63 lines (63 loc) · 2.04 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
57
58
59
60
61
62
63
{
"name": "rogue-tracker",
"version": "1.0.0",
"description": "I'm a college student powerlifter who as many people during COVID-19 was unable to access the gym. As a result, I decided to create a home gym and to do that I needed some gym equipment. However, many sites were out of stock, especially Rogue, my favorite fitness company. As a result, I decided to create this bot to update myself whenever an equipment is back in stock. I encountered a community on reddit r/homegym where other users faced the same problem and I decided this would be a great tool to help others just like me.",
"main": "app.js",
"dependencies": {
"after-load": "^1.0.4",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"cloudscraper": "^4.6.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.2",
"express": "^4.17.1",
"free-proxy": "^0.1.6",
"fuzzyset.js": "^1.0.5",
"got": "^11.5.2",
"moment": "^2.24.0",
"mongodb": "^3.6.0",
"mysql": "^2.18.1",
"nightmare": "^3.0.2",
"node-fetch": "^2.6.1",
"random-useragent": "^0.5.0",
"read-last-lines": "^1.7.2",
"request": "^2.88.2",
"should": "^13.2.3",
"split-lines": "^2.0.0",
"superagent": "^6.0.0",
"superagent-proxy": "^2.0.0",
"tor": "0.0.1"
},
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"messenger-bot-tester": "^1.3.1",
"prettier": "^2.0.5"
},
"scripts": {
"start": "node app.js",
"test": "mocha",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonniechow/RogueItemTracker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jonniechow/RogueItemTracker/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"homepage": "https://github.com/jonniechow/RogueItemTracker#readme"
}