-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 958 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 958 Bytes
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
{
"name": "aws-node-typescript-multi-instance-lambda",
"version": "1.0.0",
"description": "Serverless example demonstrating how to deploy multiple instances of the same lambda",
"main": "serverless.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Daniel Simpson",
"license": "MIT",
"devDependencies": {
"@serverless/typescript": "^3.25.0",
"@types/aws-lambda": "^8.10.109",
"@types/node": "^18.11.11",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"eslint": "^8.29.0",
"import": "^0.0.6",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"serverless": "^3.25.1",
"serverless-webpack": "^5.11.0",
"sonarjs": "^1.0.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0"
},
"dependencies": {
"aws-lambda": "^1.0.7",
"source-map-support": "^0.5.21"
}
}