-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.38 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
{
"name": "compound-loop",
"version": "1.0.0",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/defi-org-code/CompoundLoop.git"
},
"devDependencies": {
"@nomiclabs/hardhat-web3": "^2.0.0",
"@typechain/web3-v1": "^2.0.0",
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"chai-bn": "^0.2.1",
"ethereumjs-hooks": "git+https://github.com/defi-org-code/ethereumjs-hooks.git",
"hardhat": "^2.0.8",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.4",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.3",
"solhint": "^3.3.2",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@openzeppelin/contracts": "^3.3.0",
"bn.js": "^4.11.9",
"lodash": "^4.17.20",
"web3": "^1.3.4"
},
"scripts": {
"prettier": "prettier --write '{test,src,contracts,scripts}/**/*.{ts,js,json,sol}'",
"typechain": "typechain --target=web3-v1 --outDir=typechain 'abi/**/*.json' && npx hardhat typechain",
"build": "npm run prettier && npx hardhat compile && npx solhint 'contracts/**/*.sol'",
"pretest": "npm run build",
"test": "npx hardhat test --logs",
"status": "npx hardhat status",
"postinstall": "ethereumjs-hooks"
}
}