-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.78 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
{
"name": "easyeigen",
"version": "0.0.1",
"description": "EVMOS extensions restaking easy Proof of Concept",
"main": "index.js",
"scripts": {
"stakeEE": "ts-node scripts/stake/stakeEE.ts",
"slash": "ts-node scripts/slash/slash.ts",
"zk:proof": "ts-node scripts/zk/proof.ts",
"zk:testProof": "ts-node scripts/zk/testHash.ts",
"clean": "rm -rf ./artifacts ./cache ./typechain",
"compile": "hardhat compile",
"node": "hardhat node",
"deploy": "hardhat deploy:contract",
"verify": "hardhat verify:contract",
"deploy:zk": "hardhat deploy:contract --contract Verifier --network tevmos",
"deploy:Staker": "hardhat deploy:contract --contract Staker --network tevmos",
"deploy:Restake": "hardhat deploy:restake --contract Restake --network tevmos",
"circom:dev": "hardhat circom --deterministic --debug --verbose",
"eslint": "eslint -c .eslintrc \"./**/*.ts\"",
"eslint:fix": "eslint --fix \"./src/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kidneyweakx/easyeigen.git"
},
"author": "kidneyweakx",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/kidneyweakx/easyeigen/issues"
},
"homepage": "https://github.com/kidneyweakx/easyeigen#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.9.0",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"dotenv": "^16.0.3",
"ericlint": "^1.1.12",
"ethers": "^5.7.2",
"hardhat": "^2.14.0",
"hardhat-circom": "^3.3.2",
"hardhat-gas-reporter": "^1.0.9",
"merkletreejs": "^0.3.10",
"snarkjs": "^0.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}