-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 889 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
{
"name": "aws-serverless-api",
"version": "1.0.0",
"description": "Serverless API with AWS Lambda",
"main": "handler.ts",
"scripts": {
"start": "sls offline start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@middy/core": "^2.2.0",
"@middy/http-cors": "^2.2.0",
"@middy/http-json-body-parser": "^2.2.0",
"aws-lambda": "^0.1.2",
"node": "^12.3.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/aws-lambda": "8.10.1",
"@types/node": "^8.0.57",
"@types/uuid": "^3.4.4",
"json-schema-to-ts": "^1.6.4",
"serverless-dynamodb-local": "^0.2.39",
"serverless-offline": "^7.0.0",
"serverless-webpack": "^5.1.1",
"source-map-support": "^0.5.6",
"ts-loader": "^4.2.0",
"typescript": "^2.9.2",
"webpack": "^4.5.0"
},
"author": "Verdotte Aututu",
"license": "MIT"
}