-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
68 lines (68 loc) · 2.62 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
62
63
64
65
66
67
68
{
"name": "barnbridge-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@openzeppelin/contracts": "^3.4.0",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
},
"devDependencies": {
"@codechecks/client": "^0.1.10",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@typechain/ethers-v5": "^3.0.0",
"@types/chai": "^4.2.14",
"@types/humanize-duration": "^3.18.1",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"eslint": "^7.11.0",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.0.19",
"globstar": "^1.0.0",
"hardhat": "^2.1.1",
"hardhat-abi-exporter": "^2.0.8",
"hardhat-contract-sizer": "^2.0.2",
"hardhat-gas-reporter": "^1.0.3",
"hardhat-typechain": "^0.3.4",
"humanize-duration": "^3.25.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"solc": "^0.7.6",
"solhint": "^3.2.2",
"solidity-coverage": "^0.7.12",
"ts-generator": "^0.1.1",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typechain": "^4.0.0",
"typescript": "^4.0.3",
"web3": "^1.3.5"
},
"scripts": {
"test": "hardhat test",
"test-mainnet": "globstar --node -- hardhat test --network hardhat \"test-mainnet/*.test.ts\"",
"bot-update-kovan": "hardhat run scripts/bot-kovan-oracle-update.ts --network kovan",
"bot-update-mainnet": "hardhat run scripts/bot-mainnet-oracle-update.ts --network mainnet",
"bot-update-mumbai": "hardhat run scripts/bot-mumbai-oracle-update.ts --network mumbai",
"bot-update-polygon": "hardhat run scripts/bot-polygon-oracle-update.ts --network polygon",
"bot-update-avalanche": "hardhat run scripts/bot-avalanche-oracle-update.ts --network avalanche",
"bot-update-bsc": "hardhat run scripts/bot-bsc-oracle-update.ts --network bsc",
"bot-update-arbitrum": "hardhat run scripts/bot-arbitrum-oracle-update.ts --network arbitrum",
"coverage": "hardhat coverage --network hardhat",
"compile": "hardhat clean && hardhat compile",
"compile-and-test": "hardhat clean && hardhat compile && hardhat test",
"size-contracts": "hardhat clean && hardhat compile && hardhat size-contracts",
"deploy-from-env": "hardhat clean && hardhat run --network env_network scripts/deploy-from-env.ts"
},
"author": "",
"license": "ISC"
}