UNPKG

chainode

Version:

A private blockchain network based on node.js

64 lines (63 loc) 1.66 kB
{ "name": "chainode", "version": "1.0.0", "description": "A private blockchain network based on node.js", "main": "index.js", "scripts": { "start": "node main.js", "build-webconsole-dev": "cd web-console/frontend && npm run build-dev", "build-webconsole-prod": "cd web-console/frontend && npm run build-prod", "test": "nyc mocha test --recursive --full-trace --exit", "start-dev-env": "bin/run-dev-env up -d", "stop-dev-env": "bin/run-dev-env down", "create-dev-topics": "bin/create-topics", "init-db": "bin/create-db/couchbase" }, "engines": { "node": ">=8.0" }, "engineStrict": true, "repository": { "type": "git", "url": "git+https://github.com/davidemiceli/chainode.git" }, "keywords": [ "blockchain", "blockchain-technology", "private-blockchain", "permissioned-blockchain", "blockchain-network", "fintech", "p2p" ], "author": "davidemiceli", "license": "AGPL-3.0", "maintainers": [ "davidemiceli" ], "bugs": { "url": "https://github.com/davidemiceli/chainode/issues" }, "homepage": "https://github.com/davidemiceli/chainode#readme", "dependencies": { "axios": "^0.18.0", "body-parser": "^1.18.3", "couchbase": "^2.6.2", "express": "^4.16.4", "jsonwebtoken": "^8.4.0", "kafka-node": "^3.0.1", "lodash": "^4.17.11", "moment": "^2.22.2", "morgan": "^1.9.1", "node-rsa": "^1.0.2", "redis": "^2.8.0", "uuid": "^3.3.2", "winston": "^3.1.0", "winston-daily-rotate-file": "^3.5.1" }, "devDependencies": { "chai": "^4.2.0", "mocha": "^5.2.0", "nyc": "^13.1.0" } }