-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.57 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "cdk",
"version": "0.1.0",
"bin": {
"cdk": "bin/cdk.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.1000.0",
"@aws-sdk/client-rekognition": "^3.1000.0",
"@types/aws-lambda": "^8.10.161",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.7.9",
"@types/pg": "^8.20.0",
"@types/supertest": "^7.2.0",
"aws-cdk": "2.1108.0",
"esbuild": "^0.27.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"js-yaml": "^4.1.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3"
},
"dependencies": {
"@aws-sdk/client-athena": "^3.1000.0",
"@aws-sdk/client-cloudformation": "^3.758.0",
"@aws-sdk/client-s3": "^3.758.0",
"@aws-sdk/client-s3vectors": "^3.1000.0",
"@aws-sdk/client-secrets-manager": "^3.1000.0",
"@aws-sdk/client-sqs": "^3.758.0",
"@aws-sdk/util-dynamodb": "^3.996.1",
"@opensearch-project/opensearch": "^3.0.0",
"aws-cdk-lib": "2.240.0",
"constructs": "^10.0.0",
"csv-parse": "^6.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"iovalkey": "^0.3.3",
"pg": "^8.20.0"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"npx jest --findRelatedTests --passWithNoTests"
]
}
}