-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.93 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
50
51
52
53
54
55
56
{
"name": "serverless-blockstream",
"version": "1.0.0",
"description": "a web3 ws client for ts",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Ethercast/serverless-blockstream"
},
"scripts": {
"test": "ts-mocha test/**/*.test.ts",
"deploy": "sls deploy",
"deploy:kovan": "sls deploy --stage kovan --srcNodeUrl \"https://kovan.infura.io/0eep3H3CSiqitPXv0aOy\" --networkId 42 --etherscanApiUrl \"https://api-kovan.etherscan.io/api\" --etherscanApiKey \"Y3475S46DWWF4TEIT67ISNSG71B22WYJS9\"",
"deploy:mainnet": "sls deploy --stage mainnet --srcNodeUrl \"https://mainnet.infura.io/0eep3H3CSiqitPXv0aOy\" --networkId 1 --etherscanApiUrl \"https://api.etherscan.io/api\" --etherscanApiKey \"17CY9NYG5A77HWV1I8XP7U4IE9DB11KWT5\""
},
"dependencies": {
"@ethercast/eth-jsonrpc-client": "^1.1.2",
"@ethercast/message-compressor": "0.0.0",
"@ethercast/model": "0.0.17",
"@ethercast/queue-drainer": "0.0.5",
"bignumber.js": "^7.2.1",
"bunyan": "^1.8.12",
"env-var": "^3.2.0",
"joi": "^13.1.2",
"node-fetch": "^2.1.1",
"sha3": "^1.2.2",
"ts-loader": "^3.5.0",
"typescript": "^2.7.2",
"underscore": "^1.8.3",
"web3-eth-abi": "^1.0.0-beta.30",
"web3-utils": "^1.0.0-beta.36",
"ws": "^4.0.0"
},
"author": "Moody Salem",
"license": "ISC",
"devDependencies": {
"@types/aws-lambda": "0.0.32",
"@types/bunyan": "^1.8.4",
"@types/chai": "^4.1.2",
"@types/joi": "^13.0.5",
"@types/mocha": "^2.2.48",
"@types/node": "^6.0.101",
"@types/node-fetch": "^1.6.7",
"@types/underscore": "^1.8.7",
"@types/ws": "^4.0.1",
"aws-sdk": "^2.200.0",
"chai": "^4.1.2",
"mocha": "^4.1.0",
"serverless-dynamodb-autoscaling": "^0.6.2",
"serverless-pseudo-parameters": "^1.4.1",
"serverless-webpack": "^4.3.0",
"ts-mocha": "^1.1.0",
"webpack": "^3.11.0",
"webpack-node-externals": "^1.6.0"
}
}