mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
The Fabric Gateway client API v1.10.0 provides simplified access to Go error details. This change updates sample client application to use this latest version of the client API, and updates Go client applications to reflect the error handling changes. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
36 lines
1,010 B
JSON
36 lines
1,010 B
JSON
{
|
|
"name": "conga-cards",
|
|
"version": "1.0.0",
|
|
"description": "Conga Cards client application",
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build:watch": "tsc -w",
|
|
"lint": "eslint ./src",
|
|
"prepare": "npm run build",
|
|
"pretest": "npm run lint",
|
|
"start": "node ./dist/app",
|
|
"test": ""
|
|
},
|
|
"author": "Hyperledger",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@grpc/grpc-js": "^1.14.0",
|
|
"@hyperledger/fabric-gateway": "^1.10.0",
|
|
"axios": "^1.7.7",
|
|
"source-map-support": "^0.5.21"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node18": "^18.2.2",
|
|
"@types/node": "^18.18.6",
|
|
"@types/source-map-support": "^0.5.6",
|
|
"@typescript-eslint/eslint-plugin": "^6.9.0",
|
|
"@typescript-eslint/parser": "^6.9.0",
|
|
"eslint": "^8.52.0",
|
|
"typescript": "~5.2.2"
|
|
}
|
|
}
|