-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
36 lines (36 loc) · 841 Bytes
/
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
{
"name": "contract-storage-viewer",
"version": "0.1.1",
"description": "Smart Contract Storage Hex Viewer",
"license": "GPLv3",
"author": {
"name": "tintinweb",
"url": "https://github.com/tintinweb/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tintinweb/smart-contract-storage-viewer.git"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "next lint"
},
"dependencies": {
"jquery": "^3.6.0",
"next": "10.2.3",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hex-editor": "^0.3.0",
"react-json-view": "^1.21.3",
"react-tabs": "^4.2.1",
"web3": "^1.7.5"
},
"devDependencies": {
"eslint": "8.21.0",
"eslint-config-next": "12.2.3"
}
}