-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 1016 Bytes
/
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
{
"name": "hexagonal-architecture",
"author": "The serverless webpack authors (https://github.com/elastic-coders/serverless-webpack)",
"license": "MIT",
"version": "1.0.0",
"description": "An example of writing a Lambda using an hexagonal (ports and adaptors) architecture",
"main": "handler.js",
"scripts": {
"test": "jest __tests__",
"deploy": "sls deploy",
"destroy": "sls remove"
},
"dependencies": {
"aws-sdk": "^2.505.0",
"serverless": "^1.49.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.30",
"@types/aws-sdk": "^2.7.0",
"@types/jest": "^24.0.16",
"@types/node": "^12.12.21",
"axios": "^0.19.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"serverless-offline": "^5.9.0",
"serverless-webpack": "^5.3.1",
"source-map-support": "^0.5.6",
"ts-jest": "^24.0.2",
"ts-loader": "^4.5.0",
"typescript": "^2.5.0",
"webpack": "^4.39.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}