-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "jira-clarifier",
"version": "1.0.0",
"description": "BE for a jira LLM integration ",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ItsACatastrophe/jira-clarifier"
},
"author": "Catherine Sanchez <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"bin": {
"temp": "bin/temp.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.125",
"@types/jest": "^29.5.5",
"@types/node": "20.7.1",
"@types/node-fetch": "^2.6.11",
"aws-cdk": "2.103.1",
"aws-cdk-lib": "2.103.1",
"constructs": "^10.0.0",
"jest": "^29.7.0",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.441.0",
"@aws-sdk/client-secrets-manager": "^3.441.0",
"@aws-sdk/client-sts": "^3.441.0",
"node-fetch": "^2.7.0"
}
}