-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.56 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
{
"name": "emerald",
"version": "1.0.0",
"description": "Prototype javascript pool server for Myriade",
"main": "src/main.js",
"repository": "https://github.com/myriadeinc/emerald.git",
"scripts": {
"start:dev": "nodemon --inspect=0.0.0.0:9878 -L --ignore test src/main.js",
"start": "node src/main.js",
"lint:fix": "eslint --fix src",
"test": "mocha --color --recursive --exit 'test' "
},
"author": "",
"license": "ISC",
"dependencies": {
"amqplib": "^0.5.5",
"app-module-path": "^2.2.0",
"axios": "^0.19.0",
"bignum": "^0.13.0",
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"bunyan-formatter": "^1.0.0",
"cryptoforknote-util": "git+https://github.com/myriadeinc/cryptonote-lib.git",
"cryptonight-hashing": "git+https://github.com/MoneroOcean/node-cryptonight-hashing.git",
"dateformat": "^3.0.3",
"egads": "^1.0.2",
"express": "^4.17.1",
"express-json-rpc-router": "^1.0.0",
"express-validator": "^6.4.1",
"gelf-stream": "^1.1.1",
"jayson": "git+https://github.com/myriadeinc/jayson.git",
"json-rpc-client": "^0.2.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"logdna-bunyan": "^1.2.0",
"nconf": "^0.10.0",
"path": "^0.12.7",
"prom-client": "^13.1.0",
"promise-redis": "0.0.5",
"redis": "^2.8.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.5.0",
"eslint": "^6.0.1",
"eslint-config-google": "^0.13.0",
"mocha": "^6.2.0",
"nodemon": "^2.0.4",
"sinon": "^7.5.0"
}
}