fabric-samples/full-stack-asset-transfer-guide/applications/conga-cards/package.json
Mark S. Lewis c077dae79c Update TypeScript implementations
- Dependency updates
- ESLint flat configuration format, replacing deprecated configuration
- Minor fixes to compile and lint issues
- Consistent TypeScript formatting with .editorconfig

Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
2024-06-18 06:51:58 -04:00

36 lines
1,006 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": ">=18"
},
"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.10",
"@hyperledger/fabric-gateway": "^1.5",
"axios": "^0.27.2",
"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"
}
}