-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.87 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
{
"name": "@adetante/explorer-besu-plugin",
"version": "1.0.4",
"publisher": "adetante",
"pluginName": "besu",
"description": "Alethio Explorer plugin that provides support for Hyperledger Besu authentication",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run build-js-prod",
"build-dev": "npm run clean && npm run build-js-dev",
"watch": "webpack-runner --config=./webpack.config.dev.js --watch",
"clean": "rimraf ./dist",
"build-js-prod": "webpack --config=./webpack.config.prod.js",
"build-js-dev": "webpack --config=./webpack.config.dev.js",
"prepare": "npm run build"
},
"author": "Antoine Detante <antoine.detante@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adetante/explorer-besu-plugin"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"ethereum",
"alethio",
"block explorer",
"besu",
"web3"
],
"engines": {
"@alethio/cms": "^1.0.0-beta.12"
},
"devDependencies": {
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/webpack-env": "^1.13.0",
"fork-ts-checker-webpack-plugin": "^0.4.15",
"mobx": "^5.15.5",
"mobx-react": "^5.4.4",
"plugin-api": "npm:@alethio/cms-plugin-api@^1.0.0-beta.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^2.6.3",
"source-map-loader": "^0.2.3",
"source-map-support": "^0.4.14",
"styled-components": "^3.4.10",
"ts-loader": "^4.4.2",
"tslib": "^1.13.0",
"tslint": "^5.15.0",
"typescript": "^3.9.7",
"typescript-styled-plugin": "^0.14.0",
"typescript-tslint-plugin": "^0.3.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"web3-eth": "^1.2.11",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-runner": "^3.1.0"
},
"dependencies": {
"@alethio/ui": "^2.0.0-dev.17"
}
}