-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 947 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 947 Bytes
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
{
"name": "blockchain-task-manager",
"version": "1.0.0",
"description": "A blockchain-based task manager using Solidity and Ethereum",
"main": "index.js",
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"deploy:sepolia": "npx hardhat run scripts/deploy.js --network sepolia",
"deploy:mumbai": "npx hardhat run scripts/deploy.js --network mumbai"
},
"keywords": [
"blockchain",
"ethereum",
"solidity",
"task-manager",
"dapp"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat": "^2.12.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.0"
}
}