-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "@bpanel/dashboard",
"version": "0.0.2",
"description": "A bPanel plugin for displaying node and blockchain information at a glance.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "[email protected]:bpanel-org/dashboard.git"
},
"scripts": {
"babel": "babel --presets=env,stage-3 lib -d dist",
"watch": "babel --presets=env,stage-3 lib -d dist --watch",
"clean": "rm -f ./dist/*.js",
"lint": "eslint lib/ test/ || exit 0",
"prepublish": "make babel",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"bpanel",
"bcoin",
"blockchain",
"redux"
],
"author": "bcoin-org",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.9.0",
"eslint-config-prettier": "^2.6.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"prettier": "^1.14.2"
},
"peerDependencies": {
"@bpanel/bpanel-ui": "^0.0.5",
"prop-types": "^15.6.0",
"react": "^16.2.0"
}
}