-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.36 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
68
69
{
"name": "ZKU-Vote",
"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",
"commit": "git add . && git commit -m .",
"push": "git push -u origin main",
"next:dev": "next dev",
"hardhat:node": "hardhat node",
"compile": "hardhat compile",
"deploy": "hardhat deploy",
"deploy-r": "hardhat deploy --network rinkeby",
"deploy-m": "hardhat deploy --network mainnet",
"cdl": "hardhat compile && hardhat deploy --network localhost",
"test": "hardhat test",
"report-gas": "REPORT_GAS=true hardhat test",
"start": "next start",
"start:node": "npm-run-all -p start hardhat:node",
"build": "next build",
"lint": "next lint"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@metamask/detect-provider": "^1.2.0",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.6.3",
"@zk-kit/identity": "^1.4.1",
"@zk-kit/protocols": "^1.11.0",
"assert": "^2.0.0",
"cookie": "^0.4.1",
"ethers": "^5.5.3",
"jsonwebtoken": "^8.5.1",
"next": "12.0.10",
"node-fetch": "^2.6.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@appliedzkp/semaphore-contracts": "^0.8.0",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^4.5.0",
"@types/chai": "^4.3.0",
"@types/cookie": "^0.4.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/mocha": "^9.1.0",
"@types/node": "17.0.17",
"@types/node-fetch": "^2.5.10",
"@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.0",
"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"
}
}