This repository has been archived by the owner on Jul 5, 2022. It is now read-only.
forked from cubedro/eth-netstats
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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
{
"name": "eth-netstats",
"description": "Ethereum Network Intelligence dashboard",
"version": "0.1.0",
"private": true,
"engines": {
"node": "0.12.0",
"npm": "2.5.1"
},
"dependencies": {
"body-parser": "^1.18.3",
"chalk": "1.1.1",
"d3": "3.5.6",
"debug": "^3.1.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"geoip-lite": "^1.4.2",
"lodash": "^3.10.1",
"mysql2": "^1.6.1",
"primus": "^7.2.3",
"primus-emit": "^1.0.0",
"primus-spark-latency": "^0.1.1",
"sequelize": "^4.41.0",
"ws": "^1.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/alastria/eth-netstats.git"
},
"homepage": "https://github.com/alastria/eth-netstats",
"bugs": {
"url": "https://github.com/alastria/eth-netstats/issues"
},
"authors": [
{
"name": "Marian Oancea",
"email": "[email protected]",
"url": "https://github.com/cubedro"
},
{
"name": "Eduardo Sánchez",
"email": "[email protected]",
"url": "https://gihub.com/esanchma"
}
],
"scripts": {
"postinstall": "./node_modules/.bin/grunt",
"test": "node test/integration.js",
"debug": "node --nolazy --inspect-brk=9229 test/integration.js"
},
"bin": {
"eth-netstats": "./server.js"
},
"license": "LGPL-3.0",
"devDependencies": {
"eslint": "^5.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eth-net-intelligence-api": "git+https://github.com/cubedro/eth-net-intelligence-api.git",
"grunt": "^1.0.3",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-cssmin": "^0.12.3",
"grunt-contrib-jade": "^1.0.0",
"grunt-contrib-uglify": "^3.3.0",
"jade": "1.11.0",
"marked": "^0.3.19",
"matchdep": "^2.0.0"
}
}