-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 3.47 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": "ethereum-lite-explorer",
"version": "1.0.0-beta.8",
"private": true,
"description": "Ethereum Lite Explorer",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run build-js-prod && npm run install-plugins && cp 404.html ./dist/404.html && cp config.json ./dist/config.json",
"build-dev": "npm run clean && npm run build-js-dev",
"check-prod-bundle-size": "bundlesize -f \"dist/js/app.bundle.js\" -s 600kB -c none",
"clean": "rimraf ./dist && npm cache clear --force",
"build-js-prod": "webpack --config=./webpack.config.prod.js",
"build-js-dev": "webpack --config=./webpack.config.dev.js",
"watch": "webpack-runner --config=./webpack.config.dev.js --watch",
"install": "cd dev && npm install && cd .. || true",
"start": "cd dev && npm start && cd ..",
"deploy-gh": "npm run build && cp 404.html ./dist/404.html && cp config.deploy.json ./dist/config.json && echo 'lite-explorer.aleth.io' > ./dist/CNAME && gh-pages -d dist -m 'gh deploy [ci skip]'",
"install-plugins": "npm i -g @alethio/cms-plugin-tool@^1.0.0-beta.5 && acp install @alethio/[email protected] @alethio/[email protected] @alethio/[email protected] @alethio/[email protected] @alethio/[email protected]"
},
"keywords": [
"ethereum",
"block explorer",
"ethstats",
"alethio",
"lite explorer"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^11.12.2",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3",
"@types/react-router-dom": "^4.3.1",
"@types/react-router-hash-link": "^1.2.1",
"@types/react-transition-group": "^2.0.16",
"@types/webpack-env": "^1.13.9",
"bundlesize": "github:siddharthkp/bundlesize#brotli-optional",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"fork-ts-checker-webpack-plugin": "^1.0.1",
"gh-pages": "^2.0.1",
"git-revision-webpack-plugin": "^3.0.3",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"interpolate-html-plugin": "^3.0.0",
"plugin-api": "npm:@alethio/cms-plugin-api@^1.0.0-beta.8",
"rimraf": "^2.6.3",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.11",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.3",
"tslib": "^1.9.3",
"tslint": "^5.14.0",
"typescript": "^3.7.5",
"typescript-plugin-styled-components": "^1.4.2",
"typescript-styled-plugin": "^0.14.0",
"typescript-tslint-plugin": "^0.3.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.1.2",
"webapp-webpack-plugin": "^2.6.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-runner": "^3.1.0"
},
"dependencies": {
"@alethio/cms": "^1.0.0-beta.12",
"@alethio/explorer-ui": "^1.0.0-beta.2",
"@alethio/ui": "^1.1.0",
"@puzzl/browser": "^1.0.0-beta.2",
"@puzzl/core": "^1.0.0-beta.1",
"@sentry/browser": "^4.4.0",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^4.3.1",
"react-router-hash-link": "^1.2.1",
"react-transition-group": "^2.7.1",
"styled-components": "^3.4.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "^10.16.3"
}
}