-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "governance-staking",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:cryptexfinance/governance-staking.git",
"author": "Cryptex Finance",
"license": "MIT",
"private": false,
"scripts": {
"build": "npx hardhat compile",
"test": "./test.sh",
"compile": "jq '.contracts.\"src/Delegator.sol\".Delegator.abi' out/dapp.sol.json",
"coverage": "./coverage.sh",
"typechain": "npx hardhat compile && typechain --outDir typechain --target ethers 'artifacts/*.json'",
"deploy": "npx hardhat deploy",
"verify": "npx hardhat sourcify",
"docgen": "yarn run solidity-docgen --solc-module solc-0.7"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.11",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.2",
"hardhat-deploy": "^0.9.1",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"pretty-quick": "^3.1.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}