-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
43 lines (43 loc) · 1.29 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "vite-hardhat",
"description": "A template repository to get started with writing zero knowledge programs with Noir.",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"deploy": "bunx hardhat compile && bunx hardhat deploy",
"dev": "bun --filter vite dev",
"test:hardhat": "bunx hardhat test",
"node": "bunx hardhat node"
},
"type": "module",
"devDependencies": {
"hardhat-plugin-noir": "0.1.3",
"@types/bun": "^1.1.12",
"hardhat": "^2.19.2"
},
"dependencies": {
"@aztec/bb.js": "^0.62.0",
"@noir-lang/noir_js": "0.36.0",
"@noir-lang/noir_wasm": "0.36.0",
"@noir-lang/types": "0.36.0",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-ignition-viem": "^0.15.5",
"commander": "^12.1.0",
"dotenv": "^16.0.3",
"shelljs": "^0.8.5",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox-viem": "3.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@nomicfoundation/hardhat-viem": "2.0.2",
"@types/mocha": "^10.0.1",
"@types/shelljs": "^0.8.7",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}