This repository has been archived by the owner on May 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.13 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
{
"name": "dapp-grapher",
"version": "0.1.0",
"description": "Takes one or several smart contracts as inputs and represents their relationships as a graph",
"private": true,
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"bd": "npm run build && npm run deploy",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"ganache": "ganache-cli -i 9001 -d 'humans are in fact omnivores and carnivorism causes cancer' -a 100",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rekmarks/dapp-grapher.git"
},
"keywords": [
"Ethereum",
"smart",
"contracts",
"Solidity",
"dapp",
"decentralized",
"graph",
"graphical",
"GUI"
],
"author": "Erik Marks <rekmarks@icloud.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rekmarks/dapp-grapher/issues"
},
"homepage": "https://rekmarks.github.io/dapp-grapher",
"dependencies": {
"@material-ui/core": "^1.5.0",
"@material-ui/icons": "^2.0.2",
"ajv": "^6.5.2",
"chain-end": "^0.7.1",
"dagre": "^0.8.2",
"ethers": "^4.0.20",
"graphlib": "^2.1.5",
"immutable": "^3.8.2",
"jointjs": "^2.2.1",
"jquery": "^3.4.1",
"lodash": "^4.17.10",
"react": "^16.4.2",
"react-bootstrap": "^0.32.1",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-scripts": "3.0.1",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"svg-pan-zoom": "^3.5.3",
"uuid": "^3.3.2",
"web3": "^1.0.0-beta.34",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"eslint": "^5.16.0",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-react": "^7.10.0",
"gh-pages": "^2.0.1",
"prop-types": "^15.6.2",
"react-dev-utils": "^6.0.5"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}