forked from cryptol0g1c/solidity-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.15 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
{
"name": "solidity-challenge",
"version": "1.0.0",
"description": "Create and deploy (locally) an ERC20 token and a staking contract that will distribute rewards to stakers over time. No need for an app or UI. You can reuse published or open source code, but you must indicate the source and what you have modified.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://leanonchain:[email protected]/leanonchain/solidity-challenge.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/leanonchain/solidity-challenge/issues"
},
"homepage": "https://github.com/leanonchain/solidity-challenge#readme",
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/contracts": "^4.6.0",
"dotenv": "^16.0.1",
"hardhat": "^2.9.7",
"hardhat-gas-reporter": "^1.0.8"
},
"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"
}
}