-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.23 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "contracts",
"version": "1.0.0",
"private": true,
"main": "index.js",
"scripts": {
"start": "pnpm run compile && pnpm run deploy --network localhost",
"start:blockchain": "hardhat node",
"compile": "hardhat compile",
"download:snark-artifacts": "hardhat run scripts/download-snark-artifacts.ts",
"deploy": "hardhat deploy",
"test": "hardhat test --network localhost",
"test:report-gas": "REPORT_GAS=true hardhat test",
"test:coverage": "hardhat coverage",
"typechain": "hardhat typechain",
"lint": "solhint 'contracts/**/*.sol'"
},
"devDependencies": {
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@openzeppelin/contracts": "^4.8.2",
"@semaphore-protocol/group": "3.15.1",
"@semaphore-protocol/hardhat": "3.15.1",
"@semaphore-protocol/identity": "3.15.1",
"@semaphore-protocol/proof": "3.15.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/download": "^8.0.2",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"circomlibjs": "0.1.7",
"dotenv": "^16.3.1",
"download": "^8.0.0",
"ethers": "^5.7.1",
"hardhat": "^2.19.2",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^10.2.0",
"poseidon-solidity": "0.0.3",
"snarkjs": "^0.7.2",
"solhint": "^3.3.8",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@semaphore-protocol/contracts": "3.15.1",
"@zk-kit/incremental-merkle-tree.sol": "1.3.3"
},
"config": {
"solidity": {
"version": "0.8.4"
},
"paths": {
"contracts": "./contracts",
"tests": "./test",
"cache": "./cache",
"build": {
"snark-artifacts": "./build/snark-artifacts",
"contracts": "./build/contracts",
"typechain": "./build/typechain"
}
}
}
}