-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.48 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": "PoolBetting",
"version": "1.0.0",
"description": "",
"scripts": {
"compile": "npx hardhat compile",
"docgen": "npx hardhat docgen",
"size-contracts": "npx hardhat size-contracts",
"prettier-sol": "prettier --write \"contracts/**/*.sol\"",
"prettier-js": "npx prettier --write {scripts,test,utils}/*.js --print-width 120 --tab-width 2",
"test": "npx hardhat test",
"node": "npx hardhat node",
"deploy": "npx hardhat run scripts/deploy.js --network",
"deployWithToken": "npx hardhat run scripts/deployWithTestToken.js --network",
"upgrade": "npx hardhat run scripts/upgrade.js --network"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Azuro-protocol/PoolBetting/issues"
},
"homepage": "https://github.com/Azuro-protocol/PoolBetting#readme",
"devDependencies": {
"chai": "^4.3.6",
"hardhat": "^2.11.2",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"@uniswap/lib": "^4.0.1-alpha",
"dotenv": "^16.0.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9"
}
}