mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 20:36:19 +00:00
nikugogoi
83775608ec
* Implement store get api without blockHash and blockNumber * Pass database instance to GraphWatcher * Implement store set without block data * Store blockHash and blockNumber in database entity table * Implement getting entity in subgraph from store.get * Add block data present in postgraphile * Pass db and context to instantiate method in tests * GQL API in graph-test-watcher to test store.set * Remove contract address from subgraph file * Fix block in dummy event data * Pass just blockHash to get an entity from the database * Review changes and add TODOs Co-authored-by: prathamesh <prathamesh.musale0@gmail.com>
43 lines
1.4 KiB
JSON
43 lines
1.4 KiB
JSON
{
|
|
"name": "@vulcanize/graph-node",
|
|
"version": "0.1.0",
|
|
"main": "dist/index.js",
|
|
"license": "AGPL-3.0",
|
|
"devDependencies": {
|
|
"@graphprotocol/graph-ts": "^0.22.0",
|
|
"@types/chai": "^4.2.18",
|
|
"@types/chai-spies": "^1.0.3",
|
|
"@types/js-yaml": "^4.0.4",
|
|
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
"@typescript-eslint/parser": "^4.25.0",
|
|
"chai": "^4.3.4",
|
|
"chai-spies": "^1.0.0",
|
|
"eslint": "^7.27.0",
|
|
"eslint-config-semistandard": "^15.0.1",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"eslint-plugin-import": "^2.23.3",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
"eslint-plugin-standard": "^5.0.0",
|
|
"ethers": "^5.2.0",
|
|
"nodemon": "^2.0.7",
|
|
"ts-node": "^10.0.0",
|
|
"typescript": "^4.3.2"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"build": "tsc",
|
|
"asbuild:debug": "asc assembly/index.ts --lib ./node_modules --exportRuntime --target debug --runPasses asyncify",
|
|
"asbuild:release": "asc assembly/index.ts --lib ./node_modules --exportRuntime --target release --runPasses asyncify",
|
|
"asbuild": "yarn asbuild:debug && yarn asbuild:release",
|
|
"test": "yarn asbuild:debug && mocha src/**/*.test.ts",
|
|
"build:example": "cd test/subgraph/example1 && yarn && yarn build",
|
|
"watch": "DEBUG=vulcanize:* nodemon --watch src src/watcher.ts"
|
|
},
|
|
"dependencies": {
|
|
"@vulcanize/assemblyscript": "0.0.1",
|
|
"js-yaml": "^4.1.0",
|
|
"typeorm": "^0.2.32"
|
|
}
|
|
}
|