-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 880 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 880 Bytes
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
{
"name": "defipedia-protocol",
"scripts": {
"compile": "npx hardhat compile",
"lint": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
"prettier:sol": "./node_modules/.bin/prettier --write contracts/**/*.sol"
},
"husky": {
"hooks": {
"pre-push": "npm run prettier:sol"
}
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"chai": "^4.3.4",
"ethers": "^5.0.0",
"hardhat": "^2.6.4",
"husky": "^7.0.2",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "0.0.5",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.2"
}
}