-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "poc-data-node-lambda-stack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:logs": "jest",
"test:silent": "jest --silent",
"build": "tsc",
"lint": "npx eslint src",
"pretty": "npx prettier --write ."
},
"author": "Darwin",
"license": "ISC",
"devDependencies": {
"@types/aws-lambda": "^8.10.110",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"aws-sdk-client-mock": "^2.0.1",
"aws-sdk-client-mock-jest": "^2.0.1",
"esbuild": "^0.16.17",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.4.2",
"prettier": "2.8.4",
"serverless-esbuild": "^1.38.0",
"serverless-plugin-utils": "^0.2.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.267.0",
"@aws-sdk/client-s3": "^3.267.0"
}
}