UNPKG

nft-folder-blockchain-connector-besu

Version:

A NestJS-based blockchain connector that communicates with specific smart contracts from the NFT Folder project.

92 lines (91 loc) 3.08 kB
{ "name": "nft-folder-blockchain-connector-besu", "version": "0.0.1", "description": "A NestJS-based blockchain connector that communicates with specific smart contracts from the NFT Folder project.", "keywords": [ "fraunhofer", "blockchain", "smart contracts", "nft", "ethereum", "connector", "nestjs" ], "homepage": "https://github.com/fraunhofer-iml/nft-folder-blockchain-connector", "bugs": "https://github.com/fraunhofer-iml/nft-folder-blockchain-connector/issues", "license": "Apache-2.0", "contributors": [ { "name": "Lukas Grieger", "email": "lukas.grieger@iml.fraunhofer.de" }, { "name": "Michael Pichura", "email": "michael.pichura@iml.fraunhofer.de" } ], "main": "./dist/index.js", "repository": { "type": "git", "url": "git+https://github.com/fraunhofer-iml/nft-folder-blockchain-connector.git" }, "scripts": { "build": "nest build", "clean": "rm -rf coverage/ dist/", "clean-install": "npm run clean; npm install", "create-library": "npm run clean-install && npm run build && npm pack", "start": "nest start", "start:dev": "nest start --watch", "start:debug": "nest start --debug --watch", "start:prod": "node dist/main", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", "test:e2e": "jest --config ./test/jest-e2e.json", "eslint-check": "npx eslint \"{src,test}/**/*.ts\"", "eslint-fix": "npx eslint --fix \"{src,test}/**/*.ts\"", "prettier-check": "npx prettier --check 'src/**/*' 'test/**/*' ./*.*", "prettier-fix": "npx prettier --write 'src/**/*' 'test/**/*' ./*.*" }, "dependencies": { "@nestjs/common": "^10.4.15", "@nestjs/config": "^3.3.0", "@nestjs/core": "^10.4.15", "@nestjs/microservices": "^10.4.15", "@nestjs/platform-express": "^10.4.15", "@nestjs/swagger": "^8.1.1", "class-transformer": "^0.5.1", "class-validator": "^0.14.1", "ethers": "^6.13.5", "reflect-metadata": "^0.2.2" }, "devDependencies": { "@nestjs/cli": "^10.4.9", "@nestjs/schematics": "^10.2.3", "@nestjs/testing": "^10.4.15", "@semantic-release/git": "^10.0.1", "@types/express": "^5.0.0", "@types/jest": "^29.5.14", "@types/multer": "^1.4.12", "@types/node": "^22.10.6", "@types/supertest": "^6.0.2", "@typescript-eslint/eslint-plugin": "^8.20.0", "@typescript-eslint/parser": "^8.20.0", "eslint": "^8.57.1", "eslint-config-prettier": "^9.1.0", "eslint-plugin-license-header": "^0.6.1", "eslint-plugin-prettier": "^5.2.2", "jest": "^29.7.0", "prettier": "^3.4.2", "prettier-plugin-properties": "^0.3.0", "semantic-release": "^24.2.1", "source-map-support": "^0.5.21", "supertest": "^7.0.0", "ts-jest": "^29.2.5", "ts-loader": "^9.5.2", "ts-node": "^10.9.2", "tsconfig-paths": "^4.2.0", "typescript": "^5.7.3" } }