-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
20 lines (20 loc) · 854 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "scrapper-lambda",
"version": "1.0.0",
"description": "When it comes to AWS Lambda function , they have their own limits as follows ![AWS Limits](./images/aws_limits.png) So , When you try to use Puppeteer your deployment package size(unzipped) easily go's above 250 mb because When you install Puppeteer, it downloads a recent version of Chromium (~170MB Mac, ~282MB Linux, ~280MB Win) that is guaranteed to work with the API.",
"main": "chrome-script.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@serverless-chrome/lambda": "^1.0.0-55",
"chrome-launcher": "^0.10.5",
"puppeteer": "^1.11.0",
"serverless-offline": "^3.31.3",
"serverless-plugin-chrome": "^1.0.0-55",
"superagent": "^4.0.0"
}
}