-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.07 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
35
36
37
{
"name": "aws-nodejs-dynamodb-cache",
"version": "0.0.0",
"description": "Serverless example AWS DynamoDB and Cache with TypeScript",
"main": "handler.js",
"scripts": {
"generate":"ts-node postGeneration/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -p tsconfig.json -c tslint.json",
"deploy-dev": "sls deploy --stage dev"
},
"dependencies": {
"@types/lambda-log": "^2.2.0",
"aws-lambda": "^0.1.2",
"aws-sdk": "^2.859.0",
"log": "^6.0.0",
"redis": "^4.7.0",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.10",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.72",
"@types/node": "^10.17.55",
"eslint": "^6.6.0",
"serverless-plugin-typescript": "^2.1.5",
"serverless-prune-plugin": "^2.0.1",
"serverless-stage-manager": "^1.0.5",
"serverless-webpack": "^5.2.0",
"ts-loader": "^5.3.3",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.9.10",
"webpack": "^4.46.0"
},
"license": "MIT"
}