-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.21 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
{
"name": "pyrrha-webclient",
"version": "1.6.0",
"description": "Webclient for Pyrrha",
"author": "Kostiantyn Smyrnov <kostysh@gmail.com>",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"sync:abis": "npx rimraf ./src/pyrrha-consensus && cp -R ./pyrrha-consensus/build/contracts ./src/pyrrha-consensus",
"start": "npm run sync:abis && BROWSER=none npx react-app-rewired start",
"start:local": "npm run sync:abis && BROWSER=none REACT_APP_USE_HOST=default npx react-app-rewired start",
"build:app": "npx react-app-rewired build",
"build:docker": "docker-compose build --no-cache",
"start:docker": "docker-compose up --remove-orphans",
"stop:docker": "docker-compose down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pandoraboxchain/pyrrha-webclient.git"
},
"bugs": {
"url": "https://github.com/pandoraboxchain/pyrrha-webclient/issues"
},
"homepage": "http://client.pandora.network",
"dependencies": {
"@babel/polyfill": "7.0.0",
"history": "4.7.2",
"prop-types": "15.6.2",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-loadable": "5.5.0",
"react-redux": "5.0.7",
"react-router-dom": "4.3.1",
"react-router-redux": "5.0.0-alpha.9",
"redux": "4.0.0",
"redux-persist": "5.10.0",
"redux-saga": "0.16.0",
"reselect": "3.0.1",
"semantic-ui-css": "2.3.3",
"semantic-ui-react": "0.82.1",
"pyrrha-js": "https://github.com/pandoraboxchain/pyrrha-js.git#v1.8.0"
},
"devDependencies": {
"node-sass-chokidar": "1.3.3",
"react-app-rewired": "2.0.0",
"react-scripts": "2.0.0-next.a671462c",
"rimraf": "2.6.2",
"sass-loader": "7.1.0",
"solhint": "1.2.1",
"style-loader": "0.23.0"
},
"keywords": [
"pandoraboxchain",
"blockchain",
"ai",
"explorer",
"boxplorer",
"dataset",
"kernel"
],
"private": true,
"license": "MIT",
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions",
"not ie < 11"
],
"production": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions",
"not ie < 11"
]
}
}