-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 805 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 805 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
{
"name": "zamapay-confidential-payroll",
"version": "1.0.0",
"description": "Confidential Payroll dApp using Zama FHE Protocol (ERC-7984)",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:coverage": "hardhat coverage",
"deploy:sepolia": "hardhat run scripts/deploy.ts --network sepolia",
"deploy:local": "hardhat run scripts/deploy.ts --network hardhat",
"clean": "hardhat clean",
"node": "hardhat node"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@types/node": "^20.0.0",
"hardhat": "^2.22.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"fhevm": "^0.6.2",
"fhevm-contracts": "^0.2.4",
"dotenv": "^16.4.0"
}
}