-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
49 lines (49 loc) · 1.47 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
41
42
43
44
45
46
47
48
49
{
"name": "serverless-boilerplate",
"version": "1.4.1",
"description": "A boilerplate for Serverless applications by Nordcloud",
"keywords": [
"serverless",
"aws"
],
"author": "Mikael Puittinen",
"contributors": [
"Eetu Tuomala"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nordcloud/serverless-boilerplate.git"
},
"dependencies": {
"diff": "^3.5.0"
},
"devDependencies": {
"aws-sdk": "^2.54.0",
"copy-webpack-plugin": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-airbnb-base": "^5.0.3",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.3",
"json-loader": "^0.5.4",
"license-checker": "^8.0.3",
"node-yaml": "^4.0.1",
"request-json": "^0.6.4",
"serverless-kms-secrets": "^1.0.3",
"serverless-mocha-plugin": "^1.11.0",
"serverless-offline": "^5.8.0",
"serverless-plugin-custom-roles": "^1.0.0",
"serverless-plugin-split-stacks": "^1.4.1",
"serverless-webpack": "^3.0.0",
"webpack": "^4.28.2",
"webpack-node-externals": "^1.5.4"
},
"scripts": {
"test": "SLS_DEBUG=true serverless invoke test",
"lint": "eslint .",
"check-licenses": "license-checker --exclude 'MIT, MIT/X11, ISC, Apache-2.0, Unlicense, WTFPL, BSD-2-Clause, BSD-3-Clause, (MIT AND CC-BY-3.0)'",
"compare-boilerplate": "node .tools/check-boilerplate-packages.js"
}
}