2021-09-17 12:46:05 +00:00
|
|
|
{
|
2022-09-09 11:43:01 +00:00
|
|
|
"name": "@cerc-io/graph-node",
|
2022-11-28 13:40:36 +00:00
|
|
|
"version": "0.2.17",
|
2021-10-28 11:01:56 +00:00
|
|
|
"main": "dist/index.js",
|
2021-09-17 12:46:05 +00:00
|
|
|
"license": "AGPL-3.0",
|
|
|
|
"devDependencies": {
|
2022-11-28 13:40:36 +00:00
|
|
|
"@cerc-io/solidity-mapper": "^0.2.17",
|
2022-11-25 14:33:58 +00:00
|
|
|
"@ethersproject/providers": "^5.4.4",
|
2021-09-22 13:41:25 +00:00
|
|
|
"@graphprotocol/graph-ts": "^0.22.0",
|
2022-04-29 09:41:40 +00:00
|
|
|
"@nomiclabs/hardhat-ethers": "^2.0.2",
|
|
|
|
"@nomiclabs/hardhat-waffle": "^2.0.1",
|
2021-11-10 07:42:37 +00:00
|
|
|
"@types/chai": "^4.2.18",
|
|
|
|
"@types/chai-spies": "^1.0.3",
|
2022-08-08 10:28:13 +00:00
|
|
|
"@types/pluralize": "^0.0.29",
|
2021-09-17 12:46:05 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
|
|
"@typescript-eslint/parser": "^4.25.0",
|
2021-11-10 07:42:37 +00:00
|
|
|
"chai": "^4.3.4",
|
|
|
|
"chai-spies": "^1.0.0",
|
2021-09-17 12:46:05 +00:00
|
|
|
"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",
|
2022-07-11 05:59:33 +00:00
|
|
|
"ethers": "^5.4.4",
|
2022-04-29 09:41:40 +00:00
|
|
|
"hardhat": "^2.3.0",
|
|
|
|
"mocha": "^8.4.0",
|
2021-09-20 10:46:29 +00:00
|
|
|
"nodemon": "^2.0.7",
|
2021-09-22 13:41:25 +00:00
|
|
|
"ts-node": "^10.0.0",
|
2022-04-29 09:41:40 +00:00
|
|
|
"typescript": "^4.3.2"
|
2021-09-17 12:46:05 +00:00
|
|
|
},
|
2021-12-01 11:04:56 +00:00
|
|
|
"bin": {
|
|
|
|
"compare-entity": "bin/compare-entity"
|
|
|
|
},
|
2021-09-17 12:46:05 +00:00
|
|
|
"scripts": {
|
|
|
|
"lint": "eslint .",
|
2021-10-28 11:01:56 +00:00
|
|
|
"build": "tsc",
|
2021-12-21 10:28:17 +00:00
|
|
|
"asbuild:debug": "asc assembly/index.ts --lib ./node_modules --exportRuntime --target debug --runPasses asyncify --runtime stub --maximumMemory 10",
|
2021-10-05 12:22:51 +00:00
|
|
|
"asbuild:release": "asc assembly/index.ts --lib ./node_modules --exportRuntime --target release --runPasses asyncify",
|
2021-09-20 10:46:29 +00:00
|
|
|
"asbuild": "yarn asbuild:debug && yarn asbuild:release",
|
2022-04-29 09:41:40 +00:00
|
|
|
"test:init": "cp .env.example .env && yarn build:example",
|
2022-04-27 10:07:13 +00:00
|
|
|
"test": "yarn asbuild:debug && DEBUG=vulcanize:* node node_modules/.bin/_mocha src/**/*.test.ts",
|
2022-01-06 13:02:08 +00:00
|
|
|
"build:example": "cd test/subgraph/example1 && yarn && yarn codegen && yarn build",
|
2021-11-23 10:45:42 +00:00
|
|
|
"watch": "DEBUG=vulcanize:* nodemon --watch src src/watcher.ts",
|
2022-04-29 09:41:40 +00:00
|
|
|
"compare-entity": "node bin/compare-entity",
|
2022-05-05 14:13:45 +00:00
|
|
|
"example:deploy": "hardhat --network localhost example-deploy",
|
|
|
|
"example:test": "hardhat --network localhost example-test"
|
2021-09-20 10:46:29 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-11-23 10:45:42 +00:00
|
|
|
"@apollo/client": "^3.3.19",
|
2022-11-28 13:40:36 +00:00
|
|
|
"@cerc-io/cache": "^0.2.17",
|
|
|
|
"@cerc-io/ipld-eth-client": "^0.2.17",
|
|
|
|
"@cerc-io/util": "^0.2.17",
|
2021-11-23 10:45:42 +00:00
|
|
|
"@types/json-diff": "^0.5.2",
|
2022-12-07 09:43:41 +00:00
|
|
|
"@cerc-io/assemblyscript": "0.19.10-watcher-ts-0.1.2",
|
2021-11-25 10:49:45 +00:00
|
|
|
"bn.js": "^4.11.9",
|
2021-11-23 10:45:42 +00:00
|
|
|
"debug": "^4.3.1",
|
|
|
|
"fs-extra": "^10.0.0",
|
2022-11-28 13:40:36 +00:00
|
|
|
"graphql": "^15.5.0",
|
2021-11-23 10:45:42 +00:00
|
|
|
"json-diff": "^0.5.4",
|
2022-11-28 13:40:36 +00:00
|
|
|
"lodash": "^4.17.21",
|
2022-08-17 13:41:40 +00:00
|
|
|
"omit-deep": "^0.3.0",
|
2022-08-08 10:28:13 +00:00
|
|
|
"pluralize": "^8.0.0",
|
2021-11-23 10:45:42 +00:00
|
|
|
"reflect-metadata": "^0.1.13",
|
|
|
|
"toml": "^3.0.0",
|
2021-11-16 07:35:05 +00:00
|
|
|
"typeorm": "^0.2.32",
|
2022-11-25 14:33:58 +00:00
|
|
|
"typeorm-naming-strategies": "^2.0.0",
|
2021-11-23 10:45:42 +00:00
|
|
|
"yargs": "^17.0.1"
|
2021-09-17 12:46:05 +00:00
|
|
|
}
|
|
|
|
}
|