forked from Azuro-protocol/Azuro-v2-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.9 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
57
58
59
60
61
{
"name": "Azuro-v2",
"version": "2.4.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"node": "npx hardhat node",
"deploy-local": "npx hardhat run scripts/deploy-with-token.js",
"upgrade-azurobet": "npx hardhat run scripts/upgrade/upgrade-AzuroBet.js --network ",
"upgrade-core": "npx hardhat run scripts/upgrade/upgrade-Core.js --network ",
"upgrade-factory": "npx hardhat run scripts/upgrade/upgrade-Factory.js --network ",
"upgrade-lp": "npx hardhat run scripts/upgrade/upgrade-LP.js --network ",
"upgrade-all-gnosis": "npx hardhat run scripts/upgrade/upgrade-AzuroBet.js --network gnosis;npx hardhat run scripts/upgrade/upgrade-Core.js --network gnosis;npx hardhat run scripts/upgrade/upgrade-Factory.js --network gnosis;npx hardhat run scripts/upgrade/upgrade-LP.js --network gnosis",
"deploy-freebet": "npx hardhat run scripts/deploy-freebet.js --network ",
"prettier-sol": "npx prettier --write \"contracts/**/*.sol\"",
"prettier-js": "npx prettier --write {scripts,scripts/*,test,utils}/*.js --print-width 120 --tab-width 2",
"solhint": "npx solhint 'contracts/**/*.sol'",
"size-contracts": "npx hardhat size-contracts",
"flatten": "npx hardhat flatten contracts/AzuroBet.sol > flatten/AzuroBet.flat.sol && npx hardhat flatten contracts/Core.sol > flatten/Core.flat.sol && npx hardhat flatten contracts/Factory.sol > flatten/Factory.flat.sol && npx hardhat flatten contracts/LP.sol > flatten/LP.flat.sol && npx hardhat flatten contracts/FreeBet.sol > flatten/FreeBet.flat.sol && npx hardhat flatten contracts/mocks/WNative.sol > flatten/WNative.flat.sol"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Azuro-protocol/Azuro-V1/issues"
},
"homepage": "https://github.com/Azuro-protocol/Azuro-V1#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "^1.7.0",
"chai": "^4.3.4",
"ethers": "^5.3.0",
"ganache-cli": "^6.12.2",
"hardhat": "^2.13.0",
"hardhat-contract-sizer": "^2.6.1",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solidity-coverage": "^0.8.2"
},
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomiclabs/hardhat-etherscan": "^3.1.1",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.8.0-rc.1",
"@openzeppelin/hardhat-defender": "^1.8.1",
"@pinata/sdk": "^1.2.1",
"@uniswap/lib": "^4.0.1-alpha",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"hardhat-change-network": "^0.0.7",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-docgen": "^1.3.0",
"hardhat-etherscan": "^1.0.1",
"hardhat-gas-reporter": "^1.0.9",
"solhint": "^3.3.7",
"yarn-upgrade-all": "^0.7.1"
},
"packageManager": "yarn@3.2.4"
}