-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
44
45
46
{
"name": "serverless-framework-app",
"version": "1.0.0",
"description": "",
"main": "handler.js",
"scripts": {
"install:local": "npm i && pip install -r requirements.txt",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest .",
"test:coverage": "jest . --coverage"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@aws-sdk/client-sqs": "^3.583.0",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@eslint/js": "^9.3.0",
"@serverless/event-mocks": "^1.1.1",
"@smithy/util-stream": "^3.0.1",
"@types/aws-lambda": "^8.10.138",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"aws-sdk-client-mock": "^4.0.0",
"eslint": "^8.57.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"globals": "^15.3.0",
"jest": "^29.7.0",
"mockdate": "^3.0.5",
"serverless": "^3.21.0",
"serverless-apigateway-service-proxy": "^2.2.1",
"serverless-lift": "^1.28.1",
"serverless-plugin-typescript": "2.1.1",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.577.0",
"@aws-sdk/client-s3": "^3.577.0",
"@aws-sdk/s3-request-presigner": "^3.582.0",
"aws-lambda": "^1.0.7",
"sharp": "^0.33.4"
}
}