-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
68 lines (68 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
66
67
68
{
"name": "miner-dashboard",
"version": "0.4.1",
"author": "selaux <[email protected]>",
"description": "Show the current status of your bitcoin miner in a browser.",
"keywords": [
"bitcoin",
"pool",
"miner",
"mining",
"dashboard",
"monitoring"
],
"private": true,
"homepage": "https://github.com/selaux/miner-dashboard",
"repository": {
"type": "git",
"url": "git://github.com/selaux/miner-dashboard.git"
},
"scripts": {
"start": "npm install --production && grunt compile && node app",
"test": "node_modules/.bin/grunt compile test"
},
"bin": {
"miner-dashboard": "app.js"
},
"dependencies": {
"backbone": "1.1.2",
"bluebird": "3.7.2",
"cheerio": "^0.22.0",
"compression": "^1.7.4",
"errorhandler": "^1.5.1",
"eventemitter2": "6.4.3",
"express": "^4.17.1",
"express-handlebars": "5.2.0",
"grunt": "1.3.0",
"grunt-browserify": "2.1.0",
"grunt-cli": "1.3.2",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-handlebars": "2.0.0",
"handlebars": "4.7.6",
"jquery": "3.5.0",
"load-grunt-tasks": "5.1.0",
"lodash": "4.17.20",
"moment": "^2.29.1",
"nodemailer": "6.4.17",
"nomnom": "1.8.1",
"numeral": "2.0.6",
"serve-favicon": "^2.5.0",
"socket.io": "2.4.0",
"stylus": "^0.54.8",
"winston": "0.7.3"
},
"devDependencies": {
"grunt-contrib-jshint": "3.0.0",
"grunt-mocha-test": "0.13.3",
"mocha": "8.2.1",
"chai": "4.3.0",
"chai-as-promised": "7.1.1",
"sinon": "1.10.2",
"sinon-chai": "2.5.0",
"sandboxed-module": "0.3.0"
},
"license": "MIT",
"engines": {
"node": ">=0.10"
}
}