Added libraries needed to study, node_modules added to .gitignore

This commit is contained in:
Robyn Drake 2023-04-11 13:13:58 -05:00
parent 277aa8ee06
commit 169de1e309
3 changed files with 1185 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules/

1168
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

16
package.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "web-scrape",
"version": "0.0.1",
"private": "true",
"type": "module",
"description": "Working on learning some basic web scraping tools with node.js",
"main": "index.js",
"keywords": [],
"author": "Robyn Drake",
"license": "ISC",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"node-fetch": "^3.3.1",
"puppeteer": "^19.8.5"
}
}