-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.49 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
{
"name": "tooling-jest-docker-plus",
"version": "0.0.1",
"description": "<!-- title: 'AWS Simple HTTP Endpoint example in NodeJS' description: 'This template demonstrates how to make a simple HTTP API with Node.js running on AWS Lambda and API Gateway using the Serverless Framework.' layout: Doc framework: v3 platform: AWS language: nodeJS authorLink: 'https://github.com/serverless' authorName: 'Serverless, inc.' authorAvatar: 'https://avatars1.githubusercontent.com/u/13742415?s=200&v=4' -->",
"main": "index.js",
"type": "module",
"scripts": {
"postinstall": "echo '\\x1b[32mNão esquece de deixar o star⭐️ no projeto em!\\x1b[0m'",
"start": "npm run offline",
"offline": "npx sls offline start --host 0.0.0.0",
"test": "npm run test:unit && npm run test:e2e",
"test:debug": "IS_OFFLINE=true node --inspect --experimental-vm-modules ./node_modules/.bin/jest --runInBand --watch",
"test:e2e": "IS_OFFLINE=true node --experimental-vm-modules ./node_modules/.bin/jest --runInBand test/e2e",
"test:unit": "IS_OFFLINE=true node --experimental-vm-modules ./node_modules/.bin/jest --runInBand test/unit",
"test:watch": "IS_OFFLINE=true node --experimental-vm-modules ./node_modules/.bin/jest --runInBand --watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"jest": "^29.7.0",
"serverless": "^3.38.0",
"serverless-offline": "^13.3.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.537.0",
"aws-sdk": "^2.1582.0"
}
}