-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
122 lines (122 loc) · 4.03 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "DendrETH",
"version": "0.0.1",
"license": "CC0-1.0",
"description": "A smart contract implementation of the Ethereum light client sync protocol",
"packageManager": "yarn@4.1.1",
"workspaces": [
"beacon-light-client/circom",
"beacon-light-client/plonky2/input_fetchers",
"beacon-light-client/solidity",
"libs/typescript",
"relay"
],
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metacraft-labs/DendrETH.git"
},
"resolutions": {
"ffjavascript": "0.2.57",
"web-worker": "1.2.0"
},
"bugs": {
"url": "https://github.com/metacraft-labs/DendrETH/issues"
},
"homepage": "https://github.com/metacraft-labs/DendrETH#readme",
"keywords": [
"ethereum",
"smart-contract",
"light-client-sync"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@noble/bls12-381": "^1.3.0",
"@types/ejs": "^3",
"@types/glob": "^7.2.0",
"@types/jest": "^29.5.12",
"@types/json-bigint": "^1",
"@types/mocha": "^10.0.6",
"@types/node": "^18.0.0",
"glob": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^2.6.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"tsx": "^4.7.1",
"typescript": "5.2.2"
},
"scripts": {
"clean": "yarn clean:normal",
"clean:all": "yarn clean:jest && EXCL_NM='' yarn clean:untracked_artifacts",
"clean:normal": "yarn clean:jest && EXCL_NM='-e node_modules' yarn clean:untracked_artifacts",
"clean:jest": "jest --clear-cache",
"clean:untracked_artifacts": "git clean -fdx -e .env -e .direnv -e .yarn -e .vscode $EXCL_NM -- $(git rev-parse --show-toplevel)",
"check:build": "cd beacon-light-client/solidity/ && yarn build:sol && cd ../../ && yarn tsc -b ./tsconfig.json",
"format:check": "prettier --check . && alejandra --exclude ./.yarn --exclude ./node_modules --exclude ./yarn-project.nix --check .",
"format:write": "prettier --write . && alejandra --exclude ./.yarn --exclude ./node_modules --exclude ./yarn-project.nix .",
"test": "jest --verbose --silent -i",
"test-emcc": "USE_EMCC=1 jest --verbose --silent",
"ts": "yarn node --import tsx",
"build-plonky-2": "yarn tsc -b beacon-light-client/plonky2/input_fetchers/tsconfig.json"
},
"dependencies": {
"@chainsafe/bls": "^6.0.3",
"@chainsafe/blst": "^0.2.4",
"@chainsafe/persistent-merkle-tree": "^0.6.1",
"@chainsafe/ssz": "0.14.3",
"@cosmjs/cosmwasm-stargate": "0.30.1",
"@cosmjs/stargate": "0.30.1",
"@dendreth/relay": "workspace:^",
"@dendreth/utils": "workspace:^",
"@iden3/binfileutils": "^0.0.11",
"@lodestar/api": "^1.14.0",
"@lodestar/types": "^1.17.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"aws-sdk": "^2.1566.0",
"bullmq": "^3.7.1",
"circom_tester": "^0.0.14",
"circomlibjs": "^0.1.7",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.2",
"ejs": "^3.1.9",
"ethers": "^5.7.0",
"express": "^4.18.2",
"ffjavascript": "0.2.57",
"hardhat": "^2.22.0",
"hardhat-gas-reporter": "^1.0.8",
"ioredis": "^5.3.2",
"ioredis-rejson": "^1.0.10",
"json-bigint": "^1.0.0",
"node-html-parser": "^6.1.12",
"prom-client": "^14.2.0",
"r1csfile": "^0.0.40",
"redis": "^4.6.10",
"redis-commander": "^0.8.0",
"snarkit2": "^0.2.0",
"snarkjs": "https://github.com/metacraft-labs/snarkjs.git#commit=091ee9c3744c660b0ecd961f9197a8249a8f7d3b",
"uuid": "^9.0.0",
"winston": "^3.10.0",
"yargs": "^17.7.2"
},
"bin": {
"get-balances-input": "dist/beacon-light-client/plonky2/get_balances_input/get_balances_input.js",
"get-changed-validators": "dist/beacon-light-client/plonky2/validators_commitment_mapper_tree/get_changed_validators.js"
},
"dependenciesMeta": {
"@lodestar/types@1.17.0": {
"unplugged": true
},
"@openzeppelin/contracts@5.0.2": {
"unplugged": true
},
"circomlib@2.0.2": {
"unplugged": true
}
}
}