forked from AztecProtocol/noir-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.87 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
44
45
46
47
48
49
50
51
52
53
{
"name": "noir-starter",
"version": "1.0.0",
"type": "module",
"description": "A template repository to get started with writing zero knowledge programs with Noir.",
"scripts": {
"prep": "cd circuit && nargo codegen-verifier",
"dev": "yarn prep && hardhat compile && yarn deploy && vite",
"build": "yarn deploy && vite build",
"preview": "vite preview",
"deploy": "hardhat compile && NODE_OPTIONS='--experimental-loader ts-node/esm/transpile-only' hardhat run --network ${NETWORK:-localhost} scripts/deploy.ts",
"test": "NODE_OPTIONS='--experimental-loader ts-node/esm/transpile-only' hardhat test"
},
"dependencies": {
"@noir-lang/backend_barretenberg": "^0.25.0",
"@noir-lang/noir_js": "^0.25.0",
"@noir-lang/noir_wasm": "^0.25.0",
"@noir-lang/types": "^0.25.0",
"dotenv": "^16.0.3",
"hardhat": "^2.19.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.1",
"viem": "2.*",
"wagmi": "^2.8.7",
"@tanstack/query-sync-storage-persister": "5.0.5",
"@tanstack/react-query": ">=5.35.1",
"@tanstack/react-query-persist-client": "5.0.5"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.5",
"@types/react": "^18.0.26",
"@vitejs/plugin-react-swc": "^3.5.0",
"chai": "^4.2.0",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^5.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox-viem": "1.0.0",
"@nomicfoundation/hardhat-viem": "1.0.0",
"typechain": "^8.1.0",
"@tanstack/react-query-devtools": "5.0.5"
},
"engines": {
"node": "^20.10.0"
}
}