forked from MASDXI/ico-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 837 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
{
"name": "ico-contract",
"version": "1.0.0",
"description": "Initial Coin Offering (ICO) contract in Ethereum",
"main": "index.js",
"scripts": {
"clean": "npx hardhat clean && rm -rf cache coverage coverage.json",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"test-rpc": "npx hardhat node",
"deploy-local": "npx hardhat run scripts/sample-script.js --network localhost",
"coverage": "npx hardhat coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.2.0",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.0.24",
"hardhat": "^2.0.6",
"solidity-coverage": "^0.7.17"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.2"
}
}