mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Pin fabric samples to node.js ~1.2.0 sdk and chaincode shim, so that the v1.2 samples always use v1.2.x sdk and shim. Change-Id: I5e2d4a37dc84f7f0f99bf82744843ee719b83fce Signed-off-by: David Enyeart <enyeart@us.ibm.com>
33 lines
823 B
JSON
33 lines
823 B
JSON
{
|
|
"name": "balance-transfer",
|
|
"version": "1.0.0",
|
|
"description": "A balance-transfer example node program to demonstrate using node.js SDK APIs",
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"start": "node app.js"
|
|
},
|
|
"keywords": [
|
|
"fabric-client sample app",
|
|
"balance-transfer node sample",
|
|
"v1.0 fabric nodesdk sample"
|
|
],
|
|
"engines": {
|
|
"node": ">=8.9.4 <9.0",
|
|
"npm": ">=5.6.0 <6.0"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"body-parser": "^1.17.1",
|
|
"cookie-parser": "^1.4.3",
|
|
"cors": "^2.8.3",
|
|
"express": "^4.15.2",
|
|
"express-bearer-token": "^2.1.0",
|
|
"express-jwt": "^5.1.0",
|
|
"express-session": "^1.15.2",
|
|
"fabric-ca-client": "~1.2.0",
|
|
"fabric-client": "~1.2.0",
|
|
"fs-extra": "^2.0.0",
|
|
"jsonwebtoken": "^7.3.0",
|
|
"log4js": "^0.6.38"
|
|
}
|
|
}
|