2020-11-20 13:12:02 +01:00
{
2020-12-02 11:07:09 +01:00
"name" : "ocean-subgraph" ,
2023-04-14 10:33:19 +02:00
"version" : "3.0.4" ,
2020-11-20 13:12:02 +01:00
"scripts" : {
2020-12-11 11:37:09 +01:00
"start" : "" ,
2022-02-17 11:59:55 +01:00
"quickstart:development" : "node ./scripts/generatenetworkssubgraphs.js development && npm run codegen && npm run create:local && npm run deploy:local" ,
2022-02-14 09:35:55 +01:00
"quickstart:barge" : "node ./scripts/generatenetworkssubgraphs.js development && npm run codegen && npm run create:local-barge && npm run deploy:local-barge" ,
2022-02-17 11:59:55 +01:00
"quickstart:rinkeby" : "node ./scripts/generatenetworkssubgraphs.js rinkeby && npm run codegen && npm run create:local && npm run deploy:local" ,
2022-09-20 13:49:55 +02:00
"quickstart:goerli" : "node ./scripts/generatenetworkssubgraphs.js goerli && npm run codegen && npm run create:local && npm run deploy:local" ,
2022-02-17 11:59:55 +01:00
"quickstart:ropsten" : "node ./scripts/generatenetworkssubgraphs.js ropsten && npm run codegen && npm run create:local && npm run deploy:local" ,
"quickstart:mumbai" : "node ./scripts/generatenetworkssubgraphs.js mumbai && npm run codegen && npm run create:local && npm run deploy:local" ,
"quickstart:moonbase" : "node ./scripts/generatenetworkssubgraphs.js moonbase && npm run codegen && npm run create:local && npm run deploy:local" ,
2022-05-10 08:23:41 +02:00
"quickstart:polygon" : "node ./scripts/generatenetworkssubgraphs.js polygon && npm run codegen && npm run create:local && npm run deploy:local" ,
2022-06-05 20:17:37 +02:00
"quickstart:mainnet" : "node ./scripts/generatenetworkssubgraphs.js mainnet && npm run codegen && npm run create:local && npm run deploy:local" ,
"quickstart:moonriver" : "node ./scripts/generatenetworkssubgraphs.js moonriver && npm run codegen && npm run create:local && npm run deploy:local" ,
"quickstart:energyweb" : "node ./scripts/generatenetworkssubgraphs.js energyweb && npm run codegen && npm run create:local && npm run deploy:local" ,
"quickstart:bsc" : "node ./scripts/generatenetworkssubgraphs.js bsc && npm run codegen && npm run create:local && npm run deploy:local" ,
2022-02-17 11:59:55 +01:00
"create:thegraph" : "graph create oceanprotocol/ocean-subgraph --node https://api.thegraph.com/deploy/" ,
2020-11-20 13:12:02 +01:00
"create:local" : "graph create oceanprotocol/ocean-subgraph --node http://127.0.0.1:8020" ,
2022-02-14 09:35:55 +01:00
"create:local-barge" : "graph create oceanprotocol/ocean-subgraph --node http://172.15.0.15:8020" ,
2021-02-09 11:13:31 +01:00
"codegen" : "graph codegen --output-dir src/@types" ,
2020-11-20 13:12:02 +01:00
"build" : "graph build" ,
2022-02-17 11:59:55 +01:00
"deploy:thegraph" : "graph deploy oceanprotocol/ocean-subgraph -l $npm_package_version --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/" ,
2022-02-14 09:35:55 +01:00
"deploy:local" : "graph deploy oceanprotocol/ocean-subgraph subgraph.yaml -l $npm_package_version --debug --ipfs http://127.0.0.1:5001 --node http://127.0.0.1:8020" ,
"deploy:local-barge" : "graph deploy oceanprotocol/ocean-subgraph subgraph.yaml -l $npm_package_version --debug --ipfs http://172.15.0.16:5001 --node http://172.15.0.15:8020" ,
2021-02-09 11:13:31 +01:00
"test" : "npm run codegen && npm run lint && npm run type-check" ,
2021-04-13 17:10:03 +02:00
"test-integration" : "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/**/*.test.ts'" ,
2022-08-12 09:32:48 +02:00
"test-dispenser" : "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/Dispenser.test.ts'" ,
2022-11-24 14:40:31 +01:00
"test-simple" : "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/SimpleSubgraph.test.ts'" ,
2022-08-11 14:59:19 +02:00
"test-fixed" : "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/FixedRateExchange.test.ts'" ,
2022-08-30 12:20:40 +02:00
"test-users" : "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/users.test.ts'" ,
2022-09-07 12:30:53 +02:00
"test-ve" : "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/VeOcean.test.ts'" ,
2022-09-13 14:45:03 +02:00
"test-df" : "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/DFRewards.test.ts'" ,
2022-11-21 15:31:13 +01:00
"test-dt" : "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/Datatoken.test.ts'" ,
2022-09-23 14:54:27 +02:00
"test-zend" : "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/ZEnding.test.ts'" ,
2020-12-11 11:37:09 +01:00
"lint" : "eslint --ignore-path .gitignore --ext .js --ext .ts --ext .tsx ." ,
2022-02-14 09:35:55 +01:00
"lint:fix" : "eslint --ignore-path .gitignore --ext .js,.ts,.tsx . --fix" ,
2020-12-11 11:37:09 +01:00
"format" : "prettier --ignore-path .gitignore './**/*.{css,yml,js,ts,tsx,json,yaml}' --write" ,
"type-check" : "tsc --noEmit" ,
2022-06-23 13:51:32 +02:00
"replaceVersion" : "node ./scripts/replaceVersion.js" ,
2020-12-11 11:37:09 +01:00
"release" : "release-it --non-interactive" ,
"changelog" : "auto-changelog -p"
2020-11-20 13:12:02 +01:00
} ,
"devDependencies" : {
2023-02-06 10:13:23 +01:00
"@graphprotocol/graph-cli" : "^0.38.0" ,
2023-02-06 12:59:00 +01:00
"@graphprotocol/graph-ts" : "^0.29.3" ,
2022-11-14 13:43:57 +01:00
"@types/chai" : "^4.3.4" ,
2021-04-13 17:10:03 +02:00
"@types/chai-spies" : "^1.0.3" ,
2022-12-05 07:49:59 +01:00
"@types/mocha" : "^10.0.1" ,
2021-10-28 18:43:50 +02:00
"@typescript-eslint/eslint-plugin" : "^4.33.0" ,
"@typescript-eslint/parser" : "^4.33.0" ,
2022-02-21 06:12:40 +01:00
"auto-changelog" : "^2.4.0" ,
2022-11-14 13:43:57 +01:00
"chai" : "^4.3.7" ,
2021-04-13 17:10:03 +02:00
"chai-spies" : "^1.0.0" ,
2021-08-02 11:43:36 +02:00
"eslint" : "^7.32.0" ,
2022-09-26 09:22:08 +02:00
"eslint-config-oceanprotocol" : "^2.0.4" ,
2023-03-27 23:19:37 +02:00
"eslint-config-prettier" : "^8.8.0" ,
2023-01-23 10:16:43 +01:00
"eslint-plugin-import" : "^2.27.5" ,
2021-10-28 18:43:50 +02:00
"eslint-plugin-node" : "^11.1.0" ,
2022-07-26 19:46:47 +02:00
"eslint-plugin-prettier" : "^4.2.1" ,
2021-10-28 18:43:50 +02:00
"eslint-plugin-standard" : "^5.0.0" ,
2022-12-12 08:19:39 +01:00
"mocha" : "^10.2.0" ,
2022-08-01 13:59:39 +02:00
"mock-local-storage" : "^1.1.23" ,
2023-04-24 10:25:34 +02:00
"prettier" : "^2.8.8" ,
2023-04-10 10:12:07 +02:00
"release-it" : "^15.10.1" ,
2022-04-04 14:52:30 +02:00
"source-map-support" : "^0.5.21" ,
2022-07-26 19:46:47 +02:00
"ts-node" : "^10.9.1" ,
"ts-node-dev" : "^2.0.0" ,
2021-04-13 17:10:03 +02:00
"ts-node-register" : "^1.0.0" ,
2023-04-10 15:09:51 +02:00
"typescript" : "^5.0.4"
2020-11-20 13:12:02 +01:00
} ,
2021-04-13 17:10:03 +02:00
"dependencies" : {
2023-03-13 09:50:13 +01:00
"@oceanprotocol/contracts" : "^1.1.12" ,
2023-03-23 16:43:36 +01:00
"@oceanprotocol/lib" : "^2.7.0" ,
2021-04-13 17:10:03 +02:00
"cross-fetch" : "^3.1.4"
} ,
2020-12-11 11:37:09 +01:00
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/oceanprotocol/ocean-subgraph.git"
} ,
"license" : "Apache-2.0" ,
"release-it" : {
"hooks" : {
2022-06-23 13:51:32 +02:00
"after:bump" : "npm run changelog && npm run replaceVersion"
2020-12-11 11:37:09 +01:00
} ,
2021-05-25 15:31:52 +02:00
"plugins" : { } ,
2020-12-11 11:37:09 +01:00
"git" : {
"tagName" : "v${version}"
} ,
"github" : {
"release" : true
} ,
"npm" : {
"publish" : false
}
2020-11-20 13:12:02 +01:00
}
}