-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "zipline-preprocessor",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"keywords": [
"ethereum"
],
"scripts": {
"check-types": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "yarn build",
"lint": "eslint --color --ext .ts src/ test/",
"test": "yarn test:unit && yarn test:e2e",
"test:unit": "mocha 'test/unit/**/*.test.ts'",
"test:e2e": "mocha 'test/e2e/**/*.test.ts'"
},
"devDependencies": {
"@chainsafe/eslint-plugin-node": "^11.2.3",
"@types/node": "^18.13.0",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"chai": "^4.3.7",
"eslint": "^8.33.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@chainsafe/bls": "^7.1.1",
"@chainsafe/blst": "^0.2.8",
"@chainsafe/persistent-merkle-tree": "^0.5.0",
"@chainsafe/ssz": "^0.10.1",
"@lodestar/api": "^1.7.2",
"@lodestar/config": "^1.7.2",
"@lodestar/params": "^1.7.2",
"@lodestar/state-transition": "^1.7.2",
"@lodestar/types": "^1.7.2",
"@lodestar/utils": "^1.7.2",
"pino": "^8.11.0",
"prom-client": "^14.2.0",
"yargs": "^17.7.1"
}
}