-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.61 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.61 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@uma/common",
"version": "2.40.0",
"description": "Common js utilities used by other UMA packages",
"homepage": "http://umaproject.org",
"license": "AGPL-3.0-or-later",
"main": "./dist/index.js",
"browser": {
"./index.js": "./dist/browser.js"
},
"types": "./dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.com/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UMAprotocol/protocol.git"
},
"scripts": {
"test": "mocha 'test/**/*.js'",
"build": "rm -rf dist && tsc && (cp src/gckms/.GckmsOverride.js dist/gckms/.GckmsOverride.js || echo 'No override file found, continuing')"
},
"bugs": {
"url": "https://github.com/UMAprotocol/protocol/issues"
},
"files": [
"/dist/**/*",
"/types/**/*"
],
"dependencies": {
"@across-protocol/contracts": "^0.1.4",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.0.5",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@google-cloud/kms": "^3.0.1",
"@google-cloud/storage": "^6.4.2",
"@nomicfoundation/hardhat-verify": "^1.0.4",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@truffle/contract": "4.6.17",
"@truffle/hdwallet-provider": "eip1559-beta",
"@types/ethereum-protocol": "^1.0.0",
"@uniswap/v3-core": "^1.0.0-rc.2",
"abi-decoder": "github:UMAprotocol/abi-decoder",
"async-retry": "^1.3.3",
"axios": "^1.6.1",
"bignumber.js": "^8.0.1",
"chalk-pipe": "^3.0.0",
"decimal.js": "^10.2.1",
"dotenv": "^9.0.0",
"eth-crypto": "^2.4.0",
"hardhat-deploy": "1.0.4",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"lodash.uniqby": "^4.7.0",
"minimist": "^1.2.0",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"node-metamask": "github:UMAprotocol/node-metamask",
"require-context": "^1.1.0",
"solidity-coverage": "^0.7.13",
"truffle-deploy-registry": "^0.5.1",
"web3": "^1.6.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@machinomy/types-truffle-contract": "^0.2.0",
"@tsconfig/node14": "^1.0.0",
"@types/lodash.uniqby": "^4.7.6",
"@types/mocha": "^5.2.7",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.2",
"web3-core": "^1.6.0",
"web3-eth-contract": "^1.6.0"
},
"overrides": {
"secp256k1@3.7.1": "3.8.1",
"secp256k1@4.0.3": "4.0.4",
"secp256k1@5.0.0": "5.0.1"
},
"resolutions": {
"**/ganache/secp256k1": "4.0.4",
"**/eccrypto/secp256k1": "3.8.1",
"**/eth-crypto/secp256k1": "5.0.1"
}
}