Update package.json
Browse files- package.json +15 -0
package.json
CHANGED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "puppeteer-scraper",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"description": "A Puppeteer scraper running in Docker",
|
5 |
+
"main": "index.js",
|
6 |
+
"scripts": {
|
7 |
+
"start": "node index.js"
|
8 |
+
},
|
9 |
+
"dependencies": {
|
10 |
+
"puppeteer-extra": "^3.3.4",
|
11 |
+
"puppeteer-extra-plugin-stealth": "^2.9.0",
|
12 |
+
"puppeteer": "^21.0.0",
|
13 |
+
"cheerio": "^1.0.0-rc.12"
|
14 |
+
}
|
15 |
+
}
|