UNPKG

@fabric-es/fabric-cqrs

Version:

Hyperledger Fabric middleware for event sourcing and cqrs pattern

76 lines (75 loc) 3.04 kB
{ "name": "@fabric-es/fabric-cqrs", "version": "0.7.18", "main": "dist/index.js", "typings": "dist/index.d.ts", "license": "BSD-3-Clause-Clear", "description": "Hyperledger Fabric middleware for event sourcing and cqrs pattern", "repository": { "type": "git", "url": "git://github.com/rtang03/fabric-es.git" }, "keywords": [ "hyperledger-fabric" ], "author": "Ross Tang", "homepage": "https://github.com/rtang03/fabric-es", "bugs": { "url": "https://github.com/rtang03/fabric-es/issues" }, "scripts": { "build": "yarn clean && tsc", "tsc:prod": "yarn clean && tsc -p ./tsconfig.prod.json", "clean": "rimraf dist", "test:service.multiusers": "rimraf assets/walletOrg1 && rimraf assets/walletOrg2 && jest service.multiusers.test", "enrollAdmin": "node ./dist/account/enrollAdmin.js", "enrollCaAdmin": "node ./dist/account/enrollCaAdmin.js", "lint": "eslint --max-warnings 10 'src/**/*.{js,ts}'", "test:service": "jest service.unit-test", "test:service-pri": "jest service.private.unit-test", "test:store-cmd": "jest --forceExit --detectOpenHandles command.store.unit-test", "test:store-cmd-pri": "jest --forceExit --detectOpenHandles command.private.store.unit-test", "test:store-query": "jest --forceExit --detectOpenHandles query.store.unit-test", "test:store-proj": "jest --forceExit --detectOpenHandles proj.store.unit-test", "test:store-rec": "jest --forceExit --detectOpenHandles reconcile.store.unit-test", "t:repo": "jest --forceExit --detectOpenHandles repo.unit-test", "t:srv": "yarn test:service && yarn test:service-pri", "t:p-repo": "jest --forceExit --detectOpenHandles repo.private.unit-test", "t:rec": "jest --forceExit --detectOpenHandles reconcile.unit-test", "t:sub": "jest --forceExit --detectOpenHandles subscribe.unit-test", "t:qdb": "jest --forceExit --detectOpenHandles qdb.unit-test", "t:store": "yarn test:store-cmd && yarn test:store-cmd-pri && yarn test:store-query && yarn test:store-proj && yarn test:store-rec", "unit-test:fab": "yarn t:store && yarn t:srv && yarn t:repo && yarn t:p-repo && yarn t:rec && yarn t:sub yarn t:qdb" }, "dependencies": { "@fabric-es/operator": "^0.7.18", "debug": "^4.3.2", "did-jwt": "^5.0.2", "dotenv": "^8.1.0", "fabric-contract-api": "2.2.1", "fabric-network": "2.2.3", "graphql-redis-subscriptions": "^2.2.1", "js-yaml": "^3.13.1", "lodash": "^4.17.15", "moment-timezone": "0.5.33", "redis-modules-sdk": "^0.2.7", "redux": "^4.0.4", "redux-observable": "^1.2.0", "reselect": "^4.0.0", "rimraf": "^3.0.0", "rxjs": "^6.5.3", "winston": "^3.2.1" }, "devDependencies": { "@types/debug": "^4.1.7", "@types/ioredis": "^4.16.4", "@types/jest": "^26.0.20", "@types/js-yaml": "^3.12.4", "@types/lodash": "^4.14.152", "@types/node": "^10.17.18", "jest": "^26.6.3", "prettier": "^2.2.1", "ts-jest": "^26.4.4", "typescript": "^4.1.3" } }