-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 723 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 723 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
32
{
"name": "serverless-twitter-bot",
"version": "0.1.0",
"bin": {
"serverless-twitter-bot": "bin/serverless-twitter-bot.js"
},
"scripts": {
"post-tweet": "ts-node src/index.ts",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "20.9.0",
"aws-cdk": "2.111.0",
"esbuild": "^0.19.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"dependencies": {
"aws-cdk-lib": "2.111.0",
"axios": "^1.6.2",
"constructs": "^10.0.0",
"openai": "^4.20.1",
"source-map-support": "^0.5.21",
"twitter-api-v2": "^1.15.2"
}
}