forked from ChainSafe/eth2-light-client-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.28 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
{
"name": "light-client-demo",
"version": "1.0.0",
"repository": "https://github.com/chainsafe/enr-app",
"author": "Chainsafe Systems",
"license": "MIT",
"scripts": {
"start": "GENERATE_SOURCEMAP=false craco start",
"build": "GENERATE_SOURCEMAP=false craco build",
"test": "craco test",
"eject": "react-scripts eject",
"mock-server": "ts-node mock-server --project ./mock-server/tsconfig.json",
"lint": "eslint --color --ext .tsx,.ts src/",
"lint:fix": "yarn run lint --fix"
},
"dependencies": {
"@chainsafe/bls": "7.1.1",
"@lodestar/api": "^1.9.2",
"@lodestar/config": "^1.9.2",
"@lodestar/light-client": "^1.9.2",
"@lodestar/params": "^1.9.2",
"@lodestar/types": "^1.9.2",
"@lodestar/utils": "^1.9.2",
"@chainsafe/persistent-merkle-tree": "^0.6.1",
"@chainsafe/ssz": "^0.10.2",
"@ethereumjs/statemanager": "^1.0.0-beta.1",
"@ethersproject/abi": "^5.6.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/debounce": "^1.2.0",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"bulma": "^0.7.5",
"css-loader": "^2.1.1",
"debounce": "^1.2.1",
"ethereumjs-util": "^7.1.4",
"https-browserify": "^1.0.0",
"lodash": "^4.17.21",
"node-sass": "^6.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.49.8",
"stream-http": "^3.2.0",
"typescript": "^4.1.2",
"web3": "^1.7.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@craco/craco": "^6.4.4",
"@types/lodash": "^4.14.177",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^7.14.0",
"eslint-plugin-prettier": "^4.0.0",
"fastify": "^3.24.1",
"fastify-cors": "^6.0.2",
"prettier": "^2.5.1",
"react-scripts": "5.0.1",
"react-snap": "^1.23.0",
"ts-node": "^10.4.0"
}
}