forked from solana-labs/networkexplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.77 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@solana/blockexplorer",
"version": "0.0.0-development",
"license": "MIT",
"author": "Solana Labs, Inc",
"homepage": "https://solana.com/",
"repository": {
"type": "git",
"url": "https://github.com/solana-labs/blockexplorer.git"
},
"bugs": {
"url": "http://github.com/solana-labs/blockexplorer/issues"
},
"dependencies": {
"@nivo/line": "^0.59.1",
"@solana/web3.js": "^0.16.10",
"babel-plugin-transform-runtime": "^6.23.0",
"base-58": "^0.0.1",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.2.0",
"cors": "^2.8.5",
"date-fns": "^1.30.1",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"geoip-lite": "^1.3.7",
"google-map-react": "^1.1.4",
"http-proxy": "^1.17.0",
"humps": "^2.0.1",
"ip": "^1.1.5",
"localforage": "^1.7.3",
"lodash": "^4.17.11",
"mobx": "^5.11.0",
"mobx-react-lite": "^1.4.1",
"nocache": "^2.1.0",
"pem": "^1.14.2",
"prop-types": "^15.7.2",
"react-simple-maps": "^0.12.1",
"redis": "^2.8.0",
"serve": "^11.0.2",
"use-debounce": "^2.1.0",
"yaml": "^1.6.0",
"yargs": "^13.2.4"
},
"devDependencies": {
"@babel/register": "^7.4.4",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/travis-cli": "^8.0.0",
"@material-ui/core": "^4.2.0",
"@material-ui/icons": "^4.2.1",
"axios": "^0.19.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-plugin-date-fns": "^0.2.1",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.7.0",
"chart.js": "^2.8.0",
"customize-cra": "^0.2.14",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react-app": "^4.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-flowtype": "^3.11.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14",
"flow-bin": "^0.102.0",
"flow-typed": "^2.5.2",
"history": "^4.9.0",
"husky": "^3.0.0",
"lint-staged": "^9.1.0",
"moment": "^2.24.0",
"prettier": "^1.18.2",
"qrcode.react": "^0.9.3",
"react": "^16.8.6",
"react-app-rewired": "^2.1.3",
"react-chartjs-2": "^2.7.6",
"react-debounce-render": "^5.0.0",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.12.5",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"robust-websocket": "^1.0.0",
"semantic-release": "^15.13.18",
"watch": "^1.0.2"
},
"bin": {
"solana-blockexplorer": "bin/blockexplorer.sh"
},
"scripts": {
"build": "set -ex; npm run build:ui; npm run build:api; npm run build:proxy",
"build:api": "babel --presets env --plugins transform-runtime api/* -d build",
"build:proxy": "babel --presets env --plugins transform-runtime proxy/* -d build",
"build:ui": "react-app-rewired 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,proxy,src}/**/}*.js{,x}'",
"re": "semantic-release --repository-url git@github.com:solana-labs/blockexplorer.git",
"start:api": "set -ex; redis-cli ping; babel-node --presets env api/api.js",
"start:proxy": "babel-node --presets env proxy",
"start:ui": "react-app-rewired start",
"start-prod:proxy": " node build/proxy",
"start-prod:api": " node build/api/api.js",
"start-prod:ui": "serve -s build",
"test:ui": "react-scripts test",
"flow-typed": "flow-typed install"
},
"files": [
"/bin",
"/build"
],
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}