-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "digibyte-rosetta-server",
"version": "1.0.0",
"description": "Rosetta Node Implementation using Rosetta SDK",
"main": "index.js",
"scripts": {
"test-api": "cd test && docker-compose up",
"test": "mocha test/js/*.test.js",
"build": "docker build -t digibyte-rosetta:latest .",
"start": "node --max-old-space-size=4096 index.js",
"dev": "nodemon .",
"lint": "eslint ."
},
"dependencies": {
"rosetta-node-sdk": "git+https://github.com/SmartArray/digibyte-rosetta-nodeapi.git#1.4.1",
"bitcore-lib": "^8.22.0",
"bitcoind-rpc": "^0.8.1",
"js-binary": "^1.2.0",
"bluebird": "^3.7.2",
"level": "^6.0.1"
},
"keywords": [
"rosetta",
"coinbase",
"digibyte",
"server"
],
"author": "yoshijaeger",
"license": "MIT",
"devDependencies": {
"axios": "^0.20.0",
"chai": "^4.2.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.0",
"mocha": "^8.1.1"
}
}