forked from yieldyak/smart-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "farmsnowballs",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.1",
"hardhat": "^2.0.11",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.7.5",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"mocha": "^7.2.0",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18"
},
"dependencies": {
"@openzeppelin/contracts": "^3.4.0",
"@pangolindex/governance": "^1.0.5",
"dotenv": "^8.2.0"
},
"prettier": {
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 89,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false,
"explicitTypes": "always"
}
}
]
},
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test --network hardhat"
}
}