-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "noah-protocol",
"version": "1.0.0",
"description": "NOAH - Privacy-Preserving KYC with Selective Disclosure for Avalanche",
"main": "index.js",
"scripts": {
"compile": "forge build",
"test": "forge test",
"test:verbose": "forge test -vvv",
"deploy:avalanche": "forge script script/Deploy.s.sol:DeployScript --rpc-url avalanche --broadcast --verify",
"deploy:fuji": "forge script script/Deploy.s.sol:DeployScript --rpc-url avalanche_testnet --broadcast --verify",
"build": "npm run build -w sdk && npm run build -w frontend"
},
"keywords": [
"noah",
"zk",
"zero-knowledge",
"kyc",
"privacy",
"avalanche",
"defi"
],
"author": "",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^5.4.0",
"ethers": "^6.9.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@types/node": "^25.5.0",
"buffer": "^6.0.3",
"chai": "^4.3.10",
"dotenv": "^16.3.1",
"hardhat": "^2.19.0"
}
}