-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 KB
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
36
37
38
39
40
41
42
43
44
{
"name": "idweb3",
"version": "1.0.0",
"description": "Digital Identity MVP with Hedera, Guardian, and EVM support",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"deploy:local": "npx hardhat run scripts/deploy.js --network hardhat",
"deploy:sepolia": "npx hardhat run scripts/deploy.js --network sepolia",
"deploy:hedera": "npx hardhat run scripts/deploy.js --network hederaTestnet",
"test": "npx hardhat test",
"clean": "npx hardhat clean",
"node": "npx hardhat node",
"copy-abi": "cp artifacts/contracts/IdentityNFT.sol/IdentityNFT.json frontend/src/contracts/",
"setup": "./setup.sh",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f"
},
"keywords": [
"hedera",
"guardian",
"digital-identity",
"blockchain",
"hardhat",
"evm",
"nft",
"credentials",
"web3"
],
"author": "IDweb3 Team",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@openzeppelin/contracts": "^4.9.3",
"hardhat": "^2.17.0"
},
"dependencies": {
"dotenv": "^16.3.1"
},
"engines": {
"node": ">=16.0.0"
}
}