-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 3.73 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"scripts": {
"compile": "hardhat compile",
"test": "npm run test:unit",
"test:unit": "hardhat test test/unit-tests/*.test.ts",
"deploy:chiliz": "hardhat deploy --tags DeployBaseContracts,MockOracle,OracleAggregator,DeployLend --network chiliz",
"deploy:scroll": "hardhat deploy --tags DeployBaseContracts,MockOracle,OracleAggregator,DeployLend --network scroll",
"deploy:neon": "hardhat deploy --tags DeployBaseContracts,MockOracle,OracleAggregator,DeployLend --network neon",
"deploy:polygonZK": "hardhat deploy --tags DeployBaseContracts,MockOracle,OracleAggregator,DeployLend --network polygonZK",
"deploy:arbitrumOne": "hardhat deploy --tags DeployBaseContracts,MockOracle,OracleAggregator,DeployLend --network arbitrumOne",
"deploy:celo": "hardhat deploy --tags DeployBaseContracts,MockOracle,OracleAggregator,DeployLend --network celo",
"deploy:mantle": "hardhat deploy --tags DeployBaseContracts,MockOracle,OracleAggregator,DeployLend --network mantle",
"deploy:base": "hardhat deploy --tags DeployBaseContracts,MockOracle,OracleAggregator,DeployLend --network base",
"verify:polygonZK": "hardhat run ./scripts/verifyEtherscan.ts --network polygonZK",
"verify:chiliz": "hardhat run ./scripts/verifyEtherscan.ts --network chiliz",
"verify:arbitrumOne": "hardhat run ./scripts/verifyEtherscan.ts --network arbitrumOne",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint --fix . --ext .js,.ts",
"solhint": "solhint 'contracts/**/*.sol'",
"lint-staged": "lint-staged",
"clean-cache": "rm -rf ./artifacts && rm -rf ./cache"
},
"name": "eth-istanbul-contracts",
"version": "1.0.0",
"description": "ETHIstanbul Contracts",
"main": "index.js",
"author": "StableUnitDAO core team",
"license": "MIT",
"dependencies": {
"@chainlink/contracts": "^0.4.0",
"@ethersproject/address": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.5",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.9.1",
"@openzeppelin/contracts-upgradeable": "^4.9.1",
"@openzeppelin/hardhat-upgrades": "^1.28.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.3",
"axios": "^1.4.0",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^6.1.1",
"ethereumjs-wallet": "^1.0.2",
"ethers": "5.6.1",
"hardhat": "2.17.1",
"hardhat-deploy": "^0.11.30",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.1.0",
"typechain": "^8.1.1",
"typescript": "^4.5.2"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"ethereum-waffle": "^4.0.10",
"lint-staged": "^13.2.3",
"pre-commit": "^1.2.2"
},
"lint-staged": {
"**/*.ts?(x)": "tsc -p tsconfig.json --noEmit --skipLibCheck"
}
}