mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Rely on the dependencies of @hyperledger/fabric-gateway making these packages transitively available. Having explicit dependency versions in the application can cause type conflicts due to private member changes in the gRPC Client class across versions. Also fix some missing or incorrect Node types and engines version contraints. Signed-off-by: Mark S. Lewis <mark_lewis@uk.ibm.com>
35 lines
981 B
JSON
35 lines
981 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": ">=16.13.0"
|
|
},
|
|
"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": {
|
|
"@hyperledger/fabric-gateway": "^1.1.0",
|
|
"axios": "^0.27.2",
|
|
"source-map-support": "^0.5.21"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node16": "^1.0.3",
|
|
"@types/node": "^16.11.46",
|
|
"@types/source-map-support": "^0.5.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.22.0",
|
|
"@typescript-eslint/parser": "^5.22.0",
|
|
"eslint": "^8.14.0",
|
|
"typescript": "~4.7.4"
|
|
}
|
|
}
|