-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 906 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
{
"name": "lambda-boilerplate",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"test": "mocha --require @babel/register ./test/*",
"build": "webpack",
"upload": "webpack && ./aws-push.local.sh",
"clean": "rm -rf dist && rm -rf node_modules/.cache/*"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"aws-sdk": "^2.788.0",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"mocha": "^6.0.1",
"mocha-loader": "^2.0.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.4",
"node-fetch": "^2.6.1",
"querystring": "^0.2.1"
}
}