-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 975 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": "serverless-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": "Roland Olah",
"scripts": {
"invoke": "serverless invoke local -f myHandler",
"test": "jest src",
"build": "serverless webpack",
"lint": "eslint --ignore-path .gitignore ."
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-source-map-support": "^2.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"serverless": "^1.48.4",
"serverless-offline": "^6.1.4",
"serverless-webpack": "^5.3.1",
"webpack": "^4.35.0",
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": ">= 12.x",
"yarn": ">= 1.x"
},
"dependencies": {
"babel-jest": "^25.5.1",
"jest": "^25.5.3",
"source-map-support": "^0.5.13"
}
}