-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.48 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
{
"name": "Staking",
"version": "0.0.1",
"private": true,
"main": "index.js",
"repository": "https://github.com/layeronly/Staking.git",
"scripts": {
"build": "npm run clean && npm run compile",
"deploy": "hardhat run scripts/deploy.ts --network onlylayer",
"stake": "hardhat run scripts/stake.ts --network onlylayer",
"transfer": "hardhat run scripts/transfer.ts --network onlylayer",
"unstake": "hardhat run scripts/unstake.ts --network onlylayer",
"register-blskey": "hardhat run scripts/register-bls-key.ts --network onlylayer",
"info": "hardhat run scripts/info.ts --network onlylayer",
"test": "npx hardhat test",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"lint": "solhint 'contracts/**/*.sol'"
},
"dependencies": {
"dotenv": "^10.0.0",
"ethers": "^5.4.5",
"hardhat": "^2.6.1",
"web3": "^1.5.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.1",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"hardhat-gas-reporter": "^1.0.4",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"typechain": "^5.1.2",
"typescript": "^4.3.5"
}
}