forked from compound-finance/comet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.33 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
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
89
90
91
92
93
94
95
96
97
98
{
"name": "comet",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"files": [
"dist",
"deployments/**/roots.json"
],
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js",
"./deployments/*": "./deployments/*"
},
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"dist/index.d.ts": [
"dist/index.d.ts"
],
"*": [
"dist/*"
],
"deployments/*": [
"deployments/*"
]
}
},
"scripts": {
"build": "hardhat compile",
"clean": "hardhat clean && rm -rf build/ cache/ coverage* dist/",
"cover": "hardhat cover && npx istanbul report --include coverage.json html lcov",
"gas": "REPORT_GAS=true yarn test",
"lint": "eslint 'plugins/**/*' 'scenario/**/*' 'scripts/**/*' 'src/**/*' 'tasks/**/*' 'test/**/*' hardhat.config.ts",
"lint-contracts": "solhint 'contracts/**/*.sol'",
"lint-contracts:fix": "solhint --fix 'contracts/**/*.sol'",
"scenario": "hardhat scenario",
"spider": "hardhat spider",
"test": "hardhat test ./test/*.ts ./test/**/*.ts ./plugins/deployment_manager/test/*.ts ",
"test:coverage": "hardhat cover --no-compile",
"audit:liquidator": "vendoza contracts/liquidator/vendor/manifest.json",
"audit:vendor": "vendoza contracts/vendor/manifest.json",
"slither:fn-clashes": "slither-check-upgradeability contracts/Configurator.sol Configurator --proxy-filename contracts/ConfiguratorProxy.sol --proxy-name ConfiguratorProxy",
"liquidation-bot": "hardhat run scripts/liquidation_bot/index.ts"
},
"keywords": [],
"author": "Compound Finance",
"license": "UNLICENSED",
"dependencies": {
"@flashbots/ethers-provider-bundle": "^0.5.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"deep-object-diff": "^1.1.9",
"jest-diff": "^27.4.2",
"undici": "^5.21.2"
},
"devDependencies": {
"@arbitrum/sdk": "^3.1.2",
"@compound-finance/hardhat-import": "^1.0.3",
"@ethersproject/experimental": "^5.6.3",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-etherscan": "3.1.7",
"@safe-global/safe-core-sdk": "^3.3.2",
"@safe-global/safe-ethers-lib": "^1.9.2",
"@typechain/ethers-v5": "^8.0.2",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"chalk": "^5.0.0",
"dotenv": "^10.0.0",
"eslint": "^8.12.0",
"ethers": "^5.7.2",
"fast-glob": "^3.2.7",
"hardhat": "^2.12.2",
"hardhat-chai-matchers": "https://github.com/jflatow/hardhat/releases/download/viaIR/nomicfoundation-hardhat-chai-matchers-v1.0.4.tgz",
"hardhat-change-network": "^0.0.7",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-cover": "compound-finance/hardhat-cover",
"hardhat-gas-reporter": "^1.0.7",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "hayesgm/mocha-multi-reporters#hayesgm/reporter-options-to-option",
"nock": "^13.2.2",
"sc-istanbul": "^0.4.5",
"solhint": "^3.3.6",
"ts-node": "^10.4.0",
"typechain": "^6.0.2",
"typescript": "^4.4.4",
"vendoza": "0.0.4"
},
"repository": "[email protected]:compound-finance/comet.git",
"resolutions": {
"mocha": "^9.1.3"
}
}