-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 889 Bytes
/
package.json
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
{
"name": "hardhat-project",
"devDependencies": {
"@nilfoundation/niljs": "^0.12.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@types/bun": "latest",
"dotenv": "^16.4.5",
"hardhat": "^2.22.6"
},
"dependencies": {
"@nilfoundation/hardhat-plugin": "^0.1.9",
"@openzeppelin/contracts": "^5.0.2",
"viem": "^2.17.9",
"zod": "^3.23.8"
},
"scripts": {
"compile": "hardhat compile",
"deploy": "hardhat deploy --network nil",
"deploy_local": "hardhat deploy_local",
"mint": "hardhat mint --network nil",
"mint_local": "hardhat mint_local",
"deploy_and_fund_wallet": "yarn hardhat deploy_and_fund_wallet",
"benchmark-mint-shard-size-1": "hardhat benchmark-mint-shard-size-1",
"deploy_accounts_benchmarking": "yarn hardhat deploy_accounts_benchmarking"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}