-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 KB
/
package.json
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
32
33
34
35
36
37
38
{
"name": "fantasy-bot",
"version": "0.1.0",
"author": {
"name": "Danny Hines"
},
"bin": {
"fantasy-bot": "bin/fantasy-bot.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"invoke": "tsc && cdk synth --no-staging && sam local invoke -t ./cdk.out/FantasyBotStack.template.json FantasyBot",
"injury-report": "tsc && cdk synth --no-staging && sam local invoke -e test/injury-report-event.json -t ./cdk.out/FantasyBotStack.template.json FantasyBot",
"update-event": "tsc && cdk synth --no-staging && sam local invoke -e test/update-event.json -t ./cdk.out/FantasyBotStack.template.json FantasyBot"
},
"devDependencies": {
"@aws-cdk/assert": "1.100.0",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"aws-cdk": "1.100.0",
"jest": "^26.4.2",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7",
"dotenv": "^10.0.0"
},
"dependencies": {
"@aws-cdk/aws-apigateway": "1.100.0",
"@aws-cdk/aws-events": "1.100.0",
"@aws-cdk/aws-events-targets": "1.100.0",
"@aws-cdk/aws-lambda": "1.100.0",
"@aws-cdk/core": "1.100.0"
},
"license": "ISC"
}