watcher-ts/package.json
prathamesh0 eec1965980
Add a payments plugin to GQL server (#391)
* Add a custom payments plugin in server process

* Fix voucher channel read in voucher subscription

* Use voucher hash and signature for payment authentication

* Use a LRU hash map for storing received vouchers

* Avoid hoisting level types to resolve build errors

* Upgrade ts-nitro packages

* Add payments related logs

* Upgrade package versions

* Always allow latestBlock query

* Upgrade ts-nitro packages
2023-07-20 17:22:48 +05:30

31 lines
889 B
JSON

{
"name": "watcher-ts",
"license": "AGPL-3.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@types/level"
]
},
"devDependencies": {
"depcheck": "^1.4.2",
"husky": "^7.0.2",
"lerna": "^4.0.0"
},
"scripts": {
"lint": "lerna run lint --stream -- --max-warnings=0",
"test:init": "lerna run test:init --stream --ignore @cerc-io/*-watcher",
"test": "lerna run test --stream --ignore @cerc-io/*-watcher --ignore @cerc-io/peer",
"build": "lerna run build --stream",
"build:watch": "lerna run build --stream --parallel -- -w",
"prepare": "husky install",
"publish:workspace": "yarn build && lerna publish",
"version:set": "lerna version --no-git-tag-version",
"version:set-codegen": "yarn workspace @cerc-io/codegen version:set"
}
}