-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.56 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
{
"name": "@bitconch/bus-explorer",
"version": "0.0.0-development",
"license": "MIT",
"author": "Bitconch Labs, Inc",
"homepage": "http://bitconch.io/",
"repository": {
"type": "git",
"url": "https://github.com/bitconch/bus-explorer.git"
},
"bugs": {
"url": "https://github.com/bitconch/bus-explorer/issues "
},
"dependencies": {
"@bitconch/bitconch-web3j": "1.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"base-58": "^0.0.1",
"copy-to-clipboard": "^3.2.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-ws": "^4.0.0",
"geoip-lite": "^1.3.7",
"google-map-react": "^1.1.4",
"ip": "^1.1.5",
"lodash": "^4.17.11",
"nocache": "^2.1.0",
"react-debounce-render": "^5.0.0",
"redis": "^2.8.0",
"serve": "^11.0.0",
"yaml": "^1.5.1"
},
"devDependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"chart.js": "^2.8.0",
"eslint": "^5.16.0",
"eslint-config-react-app": "^3.0.7",
"eslint-plugin-flowtype": "^2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13",
"history": "^4.9.0",
"moment": "^2.24.0",
"prettier": "^1.17.0",
"qrcode.react": "^0.9.3",
"react": "^16.8.6",
"react-chartjs-2": "^2.7.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"react-scripts": "3.0.1",
"robust-websocket": "^1.0.0",
"semantic-release": "^15.13.12",
"watch": "^1.0.2"
},
"bin": {
"bus-scan": "bin/blockexplorer.sh"
},
"scripts": {
"build": "set -ex; npm run build:ui; npm run build:api",
"build:api": "babel --presets env --plugins transform-runtime api/* -d build",
"build:ui": "react-scripts build",
"lint": "set -ex; npm run pretty; eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:watch": "watch 'npm run lint:fix' . --wait=1",
"prepack": "set -ex; npm run lint; npm run build",
"pretty": "prettier --write '{,{api,src}/**/}*.js{,x}'",
"start:api": "PORT=8960 set -ex; redis-cli ping; babel-node --presets env api/api.js",
"start:ui": "PORT=8961 react-scripts start",
"start-prod:api": " node build/api/api.js",
"start-prod:ui": "serve -s build",
"test:ui": "react-scripts test"
},
"files": [
"/bin",
"/build"
],
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}