-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 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
{
"name": "aegis",
"version": "0.0.1",
"description": "Aegis",
"license": "MIT",
"scripts": {
"build": "./scripts/buildCircuits.sh",
"lint": "solhint 'contracts/**/*.sol' && eslint .",
"clean": "hardhat clean",
"compile": "npm run lint && npm run clean && hardhat compile",
"setup": "npx mocha test -s 0 -t 100000 --exit -g setup",
"test": "npx hardhat test ./test/2_aegis.test.js",
"all": "yarn build && yarn setup && yarn test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"circomlib": "^2.0.2",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"ethereum-waffle": "^3.2.2",
"hardhat": "^2.0.9",
"hardhat-artifactor": "^0.2.0",
"hardhat-docgen": "^1.1.1",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-tracer": "^1.0.0-alpha.6",
"solhint": "^3.3.2"
},
"dependencies": {
"@openzeppelin/contracts": "4.1.0",
"circomlibjs": "0.0.8",
"ethers": "^5.5.2",
"snarkjs": "^0.4.22"
}
}