-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 3.12 KB
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
62
63
64
65
66
67
{
"name": "Azuro-v1-core",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"node": "hardhat node",
"deploy-local": "npx hardhat run scripts/deployWithLiquidityAndOracle.js --network localhost",
"setup-web-testing": "npx hardhat run scripts/setupWebTesting.js --network localhost",
"deploy-hardhat": "npx hardhat run scripts/deployWithLiquidityAndOracle.js --network hardhat",
"deploy-kovan": "npx hardhat run scripts/deployWithLiquidityAndOracle.js --network kovan",
"deploy-rinkeby": "npx hardhat run scripts/deployWithLiquidityAndOracle.js --network rinkeby",
"deploy-sokol": "npx hardhat run scripts/deployWithLiquidityAndOracle.js --network sokol",
"deploy-gnosis": "npx hardhat run scripts/deployMainNet.js --network gnosis",
"random-betting": "npx hardhat run scripts/runRandomBettingWorkflow.js",
"upgrade-core-hardhat": "npx hardhat run scripts/upgradeCore.js --network hardhat",
"upgrade-core-rinkeby": "npx hardhat run scripts/upgradeCore.js --network rinkeby",
"upgrade-core-sokol": "npx hardhat run scripts/upgradeCore.js --network sokol",
"upgrade-lp-sokol": "npx hardhat run scripts/upgradeLP.js --network sokol",
"upgrade-azurobet-sokol": "npx hardhat run scripts/upgradeAzuroBet.js --network sokol",
"prettier-sol": "prettier --write \"contracts/**/*.sol\"",
"prettier-js": "npx prettier --write {scripts,tasks,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/LP.sol > flatten/LP.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",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.0",
"ganache-cli": "^6.12.2",
"hardhat": "^2.4.3",
"hardhat-contract-sizer": "^2.0.3",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solidity-coverage": "^0.7.16"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/contracts-upgradeable": "4.6.0",
"@openzeppelin/hardhat-defender": "^1.7.0",
"@openzeppelin/upgrades-core": "^1.16.1",
"@pinata/sdk": "^1.1.25",
"@uniswap/lib": "^4.0.1-alpha",
"csv-parse": "^5.0.4",
"debug": "^4.3.2",
"dotenv": "^8.2.0",
"hardhat-change-network": "^0.0.7",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-docgen": "^1.1.1",
"hardhat-gas-reporter": "^1.0.7",
"solhint": "^3.3.6"
}
}