forked from rsksmart/rsk-explorer-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "rsk-explorer-api",
"version": "1.0.7",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npx nodemon src/api | ./node_modules/.bin/bunyan -o short",
"blocks": "npx nodemon src/services/blocks | npx bunyan -o short",
"build": "npm run clean && npm run api-docs && ./node_modules/.bin/babel src -d dist --copy-files",
"clean": "rm -rf dist && rm -f .node-xmlhttprequest-sync*",
"md": "mkdir dist",
"status": "npx nodemon src/tools/statusClient.js",
"abi": "npx nodemon src/lib/ContractParser/compileJsonAbis.js",
"lint": "npx eslint src/**/* --quiet",
"test": "npx mocha",
"api-docs": "npx babel-node src/api/makeOpenApiSpec.js > public/swagger.json"
},
"repository": {
"type": "git",
"url": "https://github.com/rsksmart/rsk-explorer-api.git"
},
"keywords": [
"rsk",
"explorer"
],
"author": "emi",
"license": "MIT",
"homepage": "https://github.com/rsksmart/rsk-explorer-api",
"dependencies": {
"bignumber.js": "^7.2.1",
"bunyan": "^2.0.2",
"express": "^4.17.1",
"mongodb": "^3.3.3",
"nod3": "git+https://github.com/rsksmart/nod3.git",
"rlp": "^2.2.2",
"rsk-contract-parser": "git+https://github.com/rsksmart/rsk-contract-parser.git",
"rsk-openapi-ui": "git+https://[email protected]/rsksmart/rsk-openapi-ui.git",
"rsk-utils": "git+https://github.com/rsksmart/rsk-utils.git",
"socket.io": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^7.1.1",
"nodemon": "^1.18.10",
"swagger-jsdoc": "^3.2.9",
"swagger-markdown": "^1.1.7"
}
}