-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.8 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
{
"name": "@alethio/explorer-plugin-eth-ibft2",
"publisher": "aleth.io",
"pluginName": "eth-ibft2",
"version": "2.0.1",
"description": "Alethio explorer plugin for Ethereum chains with IBFT2 consensus algorithm",
"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": "Alexandru Ciuca <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Alethio/explorer-plugin-eth-ibft2"
},
"engines": {
"@alethio/cms": "^1.0.0-beta.7"
},
"devDependencies": {
"@types/node": "^12.0.5",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"@types/webpack-env": "^1.13.0",
"fork-ts-checker-webpack-plugin": "^0.4.15",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"plugin-api": "npm:@alethio/cms-plugin-api@^1.0.0-beta.6",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3",
"source-map-loader": "^0.2.3",
"source-map-support": "^0.4.14",
"styled-components": "^3.4.2",
"ts-loader": "^4.4.2",
"tslib": "^1.9.3",
"tslint": "^5.15.0",
"typescript": "^3.4.1",
"typescript-styled-plugin": "^0.14.0",
"typescript-tslint-plugin": "^0.3.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.29.6",
"webpack-cli": "^3.1.2",
"webpack-runner": "^3.1.0"
},
"dependencies": {
"@alethio/explorer-ui": "^1.0.0-beta.0",
"@alethio/ui": "^1.0.0-beta.11",
"rlp": "^2.2.3"
}
}