generated from PaulRBerg/hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
121 lines (121 loc) · 4.33 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@venusprotocol/oracle",
"description": "Venus Protocol Price Oracle",
"version": "2.7.0",
"author": "Venus",
"engines": {
"node": ">=18.x.x"
},
"files": [
"artifacts",
"artifacts-zk",
"networks",
"dist",
"deployments",
"contracts"
],
"scripts": {
"clean": "shx rm -rf ./artifacts ./cache ./coverage ./coverage.json && hardhat clean && hardhat clean --config hardhat.config.zksync.ts",
"commit": "git-cz",
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile && hardhat compile --config hardhat.config.zksync.ts",
"hardhat:coverage": "hardhat coverage",
"deploy:testnet": "hardhat --network bsctestnet deploy --tags deploy",
"configure:testnet": "hardhat --network bsctestnet deploy --tags configure",
"verify": "hardhat etherscan-verify",
"lint": "yarn lint:sol && yarn lint:ts && yarn prettier:check",
"lint:sol": "solhint --config ./.solhint.json \"contracts/**/*.sol\"",
"lint:ts": "eslint --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier": "prettier --config ./.prettierrc.yaml --write \"**/*.{js,json,md,sol,ts,yaml,yml}\"",
"prettier:check": "prettier --check --config ./.prettierrc.yaml \"**/*.{js,json,md,sol,ts,yaml,yml}\"",
"test": "npm run compile && hardhat test",
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"build": "rm -rf dist && hardhat compile && hardhat compile --config hardhat.config.zksync.ts && tsc --declaration",
"docgen": "hardhat docgen",
"prepare": "husky install"
},
"dependencies": {
"@chainlink/contracts": "^0.5.1",
"@defi-wonderland/smock": "2.3.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@venusprotocol/governance-contracts": "^2.4.0",
"@venusprotocol/solidity-utilities": "^2.0.0",
"@venusprotocol/venus-protocol": "^9.1.0",
"ethers": "^5.6.8",
"hardhat": "2.19.5",
"hardhat-deploy": "^0.12.4",
"module-alias": "^2.2.2",
"solidity-docgen": "^0.6.0-beta.29"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@ethersproject/abstract-signer": "^5.6.2",
"@ethersproject/bignumber": "^5.6.2",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/providers": "^5.6.8",
"@matterlabs/hardhat-zksync": "^0.2.0",
"@matterlabs/hardhat-zksync-solc": "^1.2.1",
"@matterlabs/hardhat-zksync-verify": "^0.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/hardhat-upgrades": "^1.22.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.0",
"@types/chai": "^4.3.1",
"@types/debug": "^4.1.12",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.42",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.1",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.22.2",
"hardhat-dependency-compiler": "^1.2.1",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0",
"semantic-release": "^19.0.3",
"shx": "^0.3.4",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.4",
"ts-generator": "^0.1.1",
"ts-node": "^10.8.1",
"typechain": "^8.1.0",
"typescript": "^4.7.3",
"zksync-ethers": "^5.9.1"
},
"keywords": [
"blockchain",
"ethereum",
"hardhat",
"smart-contracts",
"solidity"
],
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"provenance": true
},
"_moduleAliases": {
"@nomiclabs/hardhat-ethers": "node_modules/hardhat-deploy-ethers"
}
}