forked from tender-finance/compound-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.58 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.58 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
{
"name": "compound-protocol",
"version": "0.2.1",
"description": "The Compound Money Market",
"main": "index.js",
"scripts": {
"compile": "./script/compile",
"console": "if node -v | grep -E \"v(12|13)\" > /dev/null; then flags=\"-n --experimental-repl-await\"; fi; npx $flags saddle console",
"coverage": "./script/coverage",
"deploy": "./scenario/script/repl -s ./script/scen/deploy.scen",
"lint": "./script/lint",
"repl": "./scenario/script/repl",
"profile": "yarn test tests/gasProfiler.js",
"report": "npx run ./script/saddle/gasReport.js",
"test": "./script/test",
"test:local": "npx hardhat --network localhost test ./tender/test/test.ts",
"test:prepare": "NO_RUN=true ./script/test",
"checksize": "npx run ./script/saddle/comptrollerSize.js",
"hh": "hardhat run"
},
"repository": "git@github.com:compound-finance/compound-protocol.git",
"author": "Compound Finance",
"license": "UNLICENSED",
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^8.2.3",
"@types/node": "^16.3.0",
"@uniswap/v3-core": "^1.0.1",
"bignumber.js": "9.0.0",
"chai": "^4.3.4",
"chai-bn": "^0.3.1",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.7.0",
"hardhat": "^2.12.1-unknown-txs.0",
"hardhat-contract-sizer": "^2.6.1",
"jest-diff": "^26.4.2",
"jest-junit": "^11.1.0",
"node-gyp": "^9.2.0",
"prettier": "^1.19.0",
"solhint": "^3.3.7",
"solium": "^1.2.5",
"solparse": "^2.2.8",
"ts-node": "^10.0.0",
"typechain": "^8.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/solidity-analyzer": "^0.0.3",
"@openzeppelin/contracts": "^4.8.1",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"@pythnetwork/pyth-sdk-solidity": "^2.2.1",
"@solidity-parser/parser": "^0.13.2",
"@tenderly/hardhat-tenderly": "^1.1.6",
"eth-saddle": "^0.1.25",
"solidity-parser-antlr": "^0.4.11"
},
"resolutions": {
"scrypt.js": "https://registry.npmjs.org/@compound-finance/ethereumjs-wallet/-/ethereumjs-wallet-0.6.3.tgz",
"**/ganache-core": "github:compound-finance/ganache-core.git#jflatow/unbreak-fork"
}
}