forked from cfork/defisaver-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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": "cdpsaver-contracts",
"version": "1.0.0",
"description": "",
"directories": {
"test": "test"
},
"scripts": {
"test": "npx mocha --exit --recursive --timeout 6000000 --grep",
"lint": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
"flatten-all": "[email protected] \"./contracts/*.sol\" ./build",
"flatten": "npx [email protected]",
"verify": "node deployers/utils/verifier.js",
"compile": "npx hardhat compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DecenterApps/cdpsaver.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DecenterApps/cdpsaver/issues"
},
"homepage": "https://github.com/DecenterApps/cdpsaver#readme",
"dependencies": {
"@chainsafe/truffle-plugin-abigen": "0.0.1",
"@openzeppelin/contracts": "^3.0.1",
"@truffle/hdwallet-provider": "^1.0.34",
"axios": "^0.21.1",
"decimal.js": "^10.2.0",
"dotenv": "^6.2.0",
"eth-json-rpc-filters": "^4.2.1",
"truffle-plugin-verify": "^0.3.6"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "2.0.2-rc.2",
"@openzeppelin/test-environment": "^0.1.4",
"@openzeppelin/test-helpers": "^0.5.5",
"@truffle/debug-utils": "^4.1.1",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.3",
"hardhat": "^2.0.4",
"husky": "^4.2.3",
"mocha": "^7.1.2",
"sol-merger": "^2.0.1",
"solhint": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npx hardhat compile --force && npm run lint"
}
}
}