-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
40 lines (40 loc) · 1.21 KB
/
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
38
39
40
{
"name": "serverless-elasticache-vpc-nat",
"version": "1.0.0",
"description": "Serverless example with elasticahe and internet access",
"main": "handler.js",
"repository": "https://github.com/ittus/aws-lambda-vpc-nat-examples",
"author": "Vu Minh Thang",
"license": "MIT",
"scripts": {
"dev": "sls offline start",
"eslint": "eslint -c .eslintrc.js --ignore-path .gitignore .",
"deploy": "yarn eslint && sls deploy"
},
"private": false,
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.13.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"serverless-offline": "^3.16.0",
"serverless-webpack": "^4.1.0",
"webpack": "^3.9.1",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"ioredis": "^3.2.2"
}
}