forked from DigiByte-Core/rosetta-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "rosetta-node-sdk",
"version": "1.4.1b",
"description": "A Standard for Blockchain Interaction",
"main": "index.js",
"scripts": {
"prestart": "npm install",
"start": "node index.js",
"run-example": "node examples/server",
"eslint": "eslint .",
"test": "mocha --exit test"
},
"keywords": [
"openapi-generator",
"openapi"
],
"license": "MIT",
"private": false,
"dependencies": {
"@babel/cli": "^7.0.0",
"body-parser": "^1.19.0",
"camelcase": "^5.3.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"exponential-backoff": "^3.0.1",
"express": "^4.16.4",
"express-openapi-validator": "^3.16.1",
"js-yaml": "^3.3.0",
"ono": "^5.0.1",
"openapi-sampler": "^1.0.0-beta.15",
"rosetta-node-sdk-client": "git+https://github.com/SmartArray/rosetta-node-sdk-client.git#1.4.1",
"superagent": "3.7.0",
"swagger-ui-express": "^4.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"axios": "^0.19.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.17.2",
"mocha": "^7.1.1"
},
"eslintConfig": {
"env": {
"node": true
}
}
}