-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.41 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
{
"name": "waldo",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "next",
"build:local": "npm run deploy:local && next build",
"build:mumbai": "npm run deploy:mumbai && next build",
"deploy:local": "hardhat run scripts/genContract.ts && NODE_ENV=localhost hardhat run --network localhost scripts/deploy.ts",
"deploy:mumbai": "hardhat run scripts/genContract.ts && NODE_ENV=testnet hardhat run --network mumbai scripts/deploy.ts",
"test": "hardhat test"
},
"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",
"circomlibjs": "^0.1.7",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"ipfs-core": "0.14.3",
"next": "latest",
"node-captcha-generator": "^0.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-loader-spinner": "^5.3.4",
"react-toastify": "^9.1.1",
"sharp": "^0.32.0"
},
"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"
}
}