-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 2.06 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
{
"name": "avax-aggregator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:avalanche": "npx hardhat test ./src/test/spec/avalanche/**/*.spec.js",
"test:arbitrum": "npx hardhat test ./src/test/spec/arbitrum/**/*.spec.js",
"test:optimism": "npx hardhat test ./src/test/spec/optimism/**/*.spec.js",
"test:dogechain": "npx hardhat test ./src/test/spec/dogechain/**/*.spec.js",
"deploy:avalanche": "npx hardhat deploy --network avalanche --tags avalanche",
"deploy:arbitrum": "npx hardhat deploy --network arbitrum --tags arbitrum",
"deploy:optimism": "npx hardhat deploy --network optimism --tags optimism",
"deploy:aurora": "npx hardhat deploy --network aurora --tags aurora",
"deploy:dogechain": "npx hardhat deploy --network dogechain --tags dogechain",
"solhint": "./node_modules/.bin/solhint -f table ./src/contracts/**/*.sol",
"prettier:solidity:write": "./node_modules/.bin/prettier -w ./src/contracts",
"prettier:solidity": "./node_modules/.bin/prettier -c ./src/contracts",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.7.3",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethereumjs-util": "^7.0.10",
"ethers": "^5.1.3",
"hardhat": "^2.12.7",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.7.10",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-log-remover": "^2.0.2",
"husky": "^8.0.1"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"dotenv": "^8.2.0",
"hardhat-tracer": "^1.0.0-alpha.5",
"minimist": "^1.2.6",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"prompt-sync": "^4.2.0",
"solc": "^0.6.12",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"typescript": "^4.2.4"
},
"mocha": {
"timeout": 100000
}
}