-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
97 lines (97 loc) · 2.63 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
{
"name": "eosio-explorer",
"version": "1.2.0",
"license": "MIT",
"author": "block.one",
"repository": "https://github.com/EOSIO/eosio-explorer",
"contributors": [
"Terry Leung",
"Jonathan Cardenas",
"Varsha Nagaraja",
"Matthew Kelly",
"Ajay Matharu"
],
"description": "A full web application to communicate with EOSIO blockchain in a local development environment",
"dependencies": {
"@eosio-toppings/api-eosio-compiler": "1.0.0",
"@eosio-toppings/api-rpc": "1.1.0",
"@eosio-toppings/docker-eosio-nodeos": "1.1.0",
"@eosio-toppings/api-postgres-plugin": "1.1.1",
"@eosio-toppings/docker-ship": "1.2.0",
"chalk": "2.4.2",
"cross-spawn": "6.0.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"open": "^6.3.0",
"pm2": "^3.5.0",
"socket.io-client": "^2.2.0"
},
"bin": {
"eosio-explorer": "./cli.sh"
},
"scripts": {
"prestart": "MODE=development node serve.js &",
"start": "react-app-rewired start",
"start-ui": "react-app-rewired start",
"build": "react-app-rewired build",
"postbuild": "react-snap",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"serve": "node pm2.js",
"serve-clear": "CLEARBROWSERSTORAGE=true node pm2.js",
"eosio-explorer": "./cli.sh"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@coreui/coreui": "^2.1.8",
"@coreui/react": "^2.1.5",
"axios": "^0.18.0",
"cogo-toast": "^1.0.4",
"connected-react-router": "^6.3.2",
"eosjs-ecc": "^4.0.4",
"eosjs-keygen": "^1.3.2",
"font-awesome": "^4.7.0",
"http-proxy-middleware": "^0.19.1",
"js-cookie": "^2.2.0",
"monaco-editor-webpack-plugin": "^1.7.0",
"node-sass": "^4.11.0",
"react": "^16.8.4",
"react-app-rewire-styled-components": "^3.0.2",
"react-app-rewired": "^2.1.1",
"react-dom": "^16.8.4",
"react-dropzone": "^10.0.4",
"react-gtm-module": "^2.0.4",
"react-loadable": "^5.5.0",
"react-monaco-editor": "^0.25.1",
"react-redux": "^7.0.2",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-scripts": "^2.1.5",
"react-snap": "^1.23.0",
"redux": "^4.0.1",
"redux-observable": "^1.1.0",
"redux-persist": "^5.10.0",
"redux-persist-transform-filter": "^0.0.18",
"redux-thunk": "^2.3.0",
"rxjs": "^6.4.0",
"styled-components": "^4.1.3",
"terminal-in-react": "^4.3.1"
},
"files": [
"build",
"helpers",
"routers",
"scripts",
".env",
"cli.sh",
"config.file",
"init_config.file",
"pm2.js",
"serve.js"
]
}