-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 805 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 805 Bytes
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
{
"name": "serverless-eth-wallet-backend",
"version": "1.0.0",
"main": "handler.js",
"scripts": {
"start": "sls offline start --stage development --region us-west-2 --host localhost --noTimeout",
"deploy": "serverless deploy -v"
},
"dependencies": {
"auth0": "^2.9.1",
"jsonwebtoken": "^8.1.0",
"jwks-rsa": "^1.2.1",
"npm-auth0-authorizer": "^1.0.1",
"scrypt": "^6.0.3",
"serverless-dynamo-client": "^1.0.1",
"serverless-secrets-plugin": "^0.1.0",
"web3": "^1.0.0-beta.27",
"web3-eth-accounts": "^1.0.0-beta.27"
},
"devDependencies": {
"serverless-dynamodb-local": "^0.2.27",
"serverless-offline": "^3.16.0"
},
"author": "Sean van Mulligen",
"license": "ISC",
"description": "Backend app for a lightweight PoC Ethereum wallet"
}