-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 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": "whitehaven",
"version": "1.0.0",
"description": "This project includes a AWS Lambda function, which consumes messages from AWS SQS, get data from AWS DynamoDB, then notify remote systems by calling a webhook API.",
"main": "index.js",
"scripts": {
"start": "sls offline",
"build": "tsc",
"deploy": "sls deploy",
"prune": "sls prune",
"remove": "sls remove",
"format": "prettier --write .",
"test": "vitest run",
"test_ui": "vitest --ui",
"test_coverage": "vitest run --coverage",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.656.0",
"@aws-sdk/client-sqs": "^3.682.0",
"@aws-sdk/lib-dynamodb": "^3.656.0",
"@types/aws-lambda": "^8.10.145",
"aws-lambda": "^1.0.7",
"change-case": "^5.4.4",
"date-fns": "^4.1.0",
"ky": "^1.7.2",
"prettier": "^3.3.3",
"purify-ts": "^2.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"serverless-prune-plugin": "^2.0.2",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}