-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 795 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 795 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
{
"name": "decentralized-identity-management",
"version": "1.0.0",
"description": "Blockchain-based Decentralized Identity Management System",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy:mumbai": "hardhat run scripts/deploy.js --network mumbai",
"verify": "hardhat run scripts/verify.js --network mumbai",
"interact": "hardhat run scripts/interact.js --network mumbai"
},
"keywords": [
"blockchain",
"identity",
"decentralized",
"did"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"dotenv": "^16.4.7",
"hardhat": "^2.12.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.0",
"ethers": "^5.7.2"
}
}