-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2 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
{
"name": "semaphore-boilerplate",
"version": "1.0.0",
"description": "A simple Next.js/Hardhat privacy application with Semaphore.",
"license": "MIT",
"private": true,
"scripts": {
"dev": "npm-run-all -p next:dev hardhat:node",
"next:dev": "next dev",
"hardhat:node": "hardhat node",
"compile": "hardhat compile",
"deploy": "hardhat deploy",
"test": "hardhat test",
"report-gas": "REPORT_GAS=true hardhat test",
"start": "next start",
"build": "next build",
"lint": "next lint"
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
]
},
"dependencies": {
"@metamask/detect-provider": "^1.2.0",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@zk-kit/identity": "^1.4.1",
"@zk-kit/protocols": "^1.11.0",
"assert": "^2.0.0",
"events": "^3.3.0",
"json-bigint": "^1.0.0",
"next": "12.0.10",
"react": "17.0.2",
"react-dom": "17.0.2",
"string_decoder": "^1.3.0"
},
"devDependencies": {
"@appliedzkp/semaphore-contracts": "^0.8.0",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^4.6.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "17.0.17",
"@types/react": "17.0.39",
"@zk-kit/incremental-merkle-tree": "^0.4.2",
"chai": "^4.3.5",
"circomlibjs": "0.0.8",
"dotenv": "^16.0.0",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.5.3",
"hardhat": "^2.8.3",
"hardhat-dependency-compiler": "^1.1.2",
"hardhat-gas-reporter": "^1.0.7",
"npm-run-all": "^4.1.5",
"ts-node": "^10.4.0",
"typescript": "4.5.5"
}
}