-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.26 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
{
"name": "nodejs-recursive-scraper",
"version": "1.0.0",
"description": "An asychnronous recursive scraper using NodeJS",
"main": "dist/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start:local": "npm run build && HOST=localhost MYSQL_USER=root MYSQL_USER_PASSWORD=password DATABASE=scraped_results node dist/index.js",
"start:docker": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheIllusionistMirage/nodejs-recursive-scraper.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheIllusionistMirage/nodejs-recursive-scraper/issues"
},
"homepage": "https://github.com/TheIllusionistMirage/nodejs-recursive-scraper#readme",
"dependencies": {
"axios": "^0.20.0",
"cheerio": "^1.0.0-rc.3",
"mysql": "^2.18.1",
"tslog": "^2.9.1",
"workerpool": "^6.0.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.22",
"@types/mysql": "^2.15.15",
"@types/node": "^14.11.10",
"@types/workerpool": "^6.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
}
}