-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 991 Bytes
/
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
{
"name": "honeycomb",
"version": "1.0.0",
"description": "Pool for users to stake an ERC-20 token and receive a share of the total pool reward after (n) number of epochs",
"main": "index.js",
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"deploy": "npx hardhat run scripts/deploy.js --network rinkeby"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Joshua-Oladeji/Honeycomb.git"
},
"keywords": [],
"author": "Joshua Oladeji",
"license": "ISC",
"bugs": {
"url": "https://github.com/Joshua-Oladeji/Honeycomb/issues"
},
"homepage": "https://github.com/Joshua-Oladeji/Honeycomb#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.9.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.5.0",
"dotenv": "^16.0.0"
}
}