-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "delete-test-01",
"description": "delete-test-01-description",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"build": "mkdir -p dist && cp -f open-api-specification.yaml dist/open-api-specification.yaml && tsc --noEmit && ts-node ./esbuild.config.ts"
},
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.496.0",
"@aws-sdk/client-dynamodb": "^3.188.0",
"@aws-sdk/client-ses": "^3.496.0",
"@aws-sdk/lib-dynamodb": "^3.188.0",
"aws-lambda": "^1.0.7"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.131",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"aws-sdk-client-mock": "^2.0.0",
"esbuild": "^0.19.11",
"jest": "^29.2.1",
"prettier": "^3.2.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"yaml-cfn": "^0.3.2"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)",
"**/__tests__/**/*.mjs?(x)",
"**/?(*.)+(spec|test).mjs?(x)"
],
"moduleFileExtensions": [
"mjs",
"js"
]
}
}