-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.3 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.3 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
{
"name": "my-api",
"version": "1.0.0",
"description": "my-api",
"scripts": {
"get-confidence": "node scripts/getConfidence.js",
"test": "DOTENV_CONFIG_PATH=.env.test jest --coverage",
"prune": "sls prune -n 3 --dryRun",
"doc": "sls openapi generate -o ./doc/build/openapi.yaml -a 3.0.3 -f yaml && sls openapi generate -o ./doc/build/openapi.json -a 3.0.3 -f json -p ./doc/build/postman.json && redocly lint ./doc/build/openapi.yaml --generate-ignore-file && redocly build-docs ./doc/build/openapi.yaml --output=./doc/build/index.html"
},
"author": "d.desio@eleva.it",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.460.0",
"@aws-sdk/client-s3": "^3.438.0",
"@aws-sdk/client-textract": "^3.436.0",
"@aws-sdk/lib-dynamodb": "^3.460.0"
},
"devDependencies": {
"@redocly/cli": "^1.0.0-beta.125",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"jest": "^29.5.0",
"jest-openapi": "^0.14.1",
"serverless": "^3.38.0",
"serverless-api-gateway-caching": "^1.10.1",
"serverless-jest-plugin": "^0.4.0",
"serverless-offline": "^12.0.4",
"serverless-openapi-documenter": "^0.0.49",
"serverless-prune-plugin": "^2.0.2",
"serverless-slic-watch-plugin": "^2.1.3",
"utils": "file:src/layer/shared/nodejs/node_modules/utils"
}
}