-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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": "accounting-db",
"version": "0.1.0",
"type": "module",
"scripts": {
"check": "npm run build && npm run test",
"build": "tsc --noEmit",
"test": "jest",
"deploy": "cdk deploy",
"deploy:dev": "cdk deploy --require-approval never --hotswap-fallback",
"benchmark-local": "tsx bin/benchmark-local.ts "
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.629.0",
"@aws-sdk/client-sqs": "^3.629.0",
"@aws-sdk/lib-dynamodb": "^3.629.0",
"@aws-sdk/types": "^3.609.0",
"@types/aws-lambda": "^8.10.143",
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"aws-cdk": "2.151.0",
"aws-sdk-client-mock": "^4.0.1",
"aws-sdk-client-mock-jest": "^4.0.1",
"esbuild": "^0.23.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"p-retry": "^6.2.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"tsx": "^4.17.0",
"typescript": "~5.5.4",
"ulid": "^2.3.0"
},
"dependencies": {
"aws-cdk-lib": "2.151.0",
"aws-embedded-metrics": "^4.1.1",
"constructs": "^10.3.0",
"source-map-support": "^0.5.21"
},
"volta": {
"node": "20.10.0"
}
}