-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
39
40
41
42
43
{
"name": "aws-serverless-twitter-bot",
"description": "CDK Application for a Serverless Event Driven Twitter Bot Utilising AI Services",
"version": "1.0.0",
"author": {
"name": "Martyn Kilbryde",
"url": "https://makit.net/"
},
"bin": {
"aws-serverless-twitter-bot": "bin/aws-serverless-twitter-bot.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"cdk": "cdk",
"lint": "eslint --ext .ts .",
"lint-fix": "eslint --fix --ext .ts ."
},
"devDependencies": {
"@types/gm": "^1.18.12",
"@types/node": "16.11.58",
"@types/prettier": "2.6.0",
"aws-cdk": "2.41.0",
"ts-node": "^10.9.1",
"typescript": "~3.9.7"
},
"dependencies": {
"@aws-cdk/aws-glue-alpha": "2.41.0-alpha.0",
"@aws-cdk/aws-kinesisfirehose-alpha": "2.41.0-alpha.0",
"@aws-cdk/aws-kinesisfirehose-destinations-alpha": "2.41.0-alpha.0",
"@types/aws-lambda": "^8.10.102",
"aws-cdk-lib": "2.41.0",
"aws-sdk": "^2.1209.0",
"axios": "^0.27.2",
"constructs": "^10.0.0",
"eslint": "^8.23.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"gm": "^1.23.1",
"source-map-support": "^0.5.21",
"twitter-api-client": "^1.6.1"
}
}