-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
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": "billify",
"version": "0.1.0",
"bin": {
"billify": "bin/billify.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"deploy": "cdk deploy",
"destroy": "cdk destroy",
"clean": "rm -rf node_modules cdk.out && npm install"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.149",
"@types/istanbul-lib-report": "^3.0.3",
"@types/jest": "^29.5.14",
"@types/node": "22.7.9",
"@types/yargs-parser": "^21.0.3",
"aws-cdk": "2.1007.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.788.0",
"@aws-sdk/client-s3": "^3.797.0",
"@aws-sdk/client-ses": "^3.787.0",
"@aws-sdk/client-sqs": "^3.797.0",
"@aws-sdk/client-textract": "^3.787.0",
"@aws-sdk/lib-dynamodb": "^3.797.0",
"aws-cdk-lib": "2.186.0",
"constructs": "^10.0.0",
"esbuild": "^0.25.3",
"lambda-multipart-parser": "^1.0.1",
"uuid": "^11.1.0"
}
}