-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 932 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 932 Bytes
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
{
"private": true,
"scripts": {
"deploy": "sls deploy --stage production",
"build": "yarn build:scraper && yarn build:trigger",
"build:scraper": "tsc --project ./tsconfig.json",
"build:trigger": "yarn parcel build trigger.ts --target=node --global handler --bundle-node-modules --no-source-maps"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.35",
"@types/isomorphic-fetch": "^0.0.35",
"@types/node": "^12.12.7",
"@types/puppeteer": "^1.20.2",
"dotenv": "^8.2.0",
"parcel": "^1.12.4",
"parcel-plugin-zip": "^1.0.6",
"prettier": "^1.19.1",
"serverless": "^1.58.0",
"serverless-dotenv-plugin": "^2.1.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"aws-sdk": "^2.568.0",
"chrome-aws-lambda": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"puppeteer": "^2.0.0"
}
}