forked from AztecProtocol/noir-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.28 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
{
"name": "noir-starter",
"version": "1.0.0",
"description": "A template repository to get started with writing zero knowledge programs with Noir.",
"scripts": {
"dev": "next",
"build": "npm run deploy && next build",
"deploy": "hardhat run scripts/genContract.ts && hardhat compile && hardhat run --network ${NETWORK} scripts/deploy.ts",
"test": "hardhat test",
"verify_gas": "hardhat run scripts/genContract.ts && hardhat run scripts/verificationGas.ts"
},
"dependencies": {
"@noir-lang/aztec_backend": "0.1.0-0c3b2f2",
"@noir-lang/barretenberg": "github:noir-lang/barretenberg#39a1547875f941ef6640217a42d8f34972425c97",
"@noir-lang/noir_wasm": "0.3.2-fa0e9cff",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-loader-spinner": "^5.3.4",
"react-toastify": "^9.1.1"
},
"devDependencies": {
"@noir-lang/noir-source-resolver": "1.1.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.5",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"typescript": "^4.9.3"
}
}