-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "lambda-ppot",
"description": "Get request to retrieve images from S3 Glacier Archive.",
"version": "0.0.1",
"private": true,
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.284.0",
"@aws-sdk/client-s3": "^3.289.0",
"@aws-sdk/client-ses": "^3.289.0",
"@aws-sdk/lib-dynamodb": "^3.284.0",
"@aws-sdk/s3-request-presigner": "^3.301.0",
"deep-email-validator": "^0.1.21",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.111",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.14.2",
"aws-sdk-client-mock": "^2.0.0",
"jest": "^29.2.1",
"typescript": "^4.9.5"
},
"scripts": {
"compile": "tsc",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)",
"**/__tests__/**/*.mjs?(x)",
"**/?(*.)+(spec|test).mjs?(x)"
],
"moduleFileExtensions": [
"mjs",
"js"
]
}
}