forked from lannonbr/LiveCodersDataAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 749 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "live-coders-poll-function",
"author": "Benjamin Lannon <benjamin@lannonbr.com>",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@jlengstorf/get-twitch-oauth": "^1.0.1",
"aws-sdk": "^2.720.0",
"date-fns": "^2.15.0",
"dotenv": "^8.2.0",
"moment": "^2.27.0",
"node-fetch": "^2.6.0"
},
"scripts": {
"test": "lambda-local --lambda-path index.js --event-path event.json --environment '{\"NODE_ENV\": \"DEV\"}'",
"clean": "rm func.zip",
"deploy": "zip -r func.zip node_modules index.js package.json && aws lambda update-function-code --function-name SaveOnlineLiveCoders --zip-file fileb://func.zip"
},
"devDependencies": {
"lambda-local": "^1.7.4"
}
}