2020-11-20 13:12:02 +01:00
|
|
|
{
|
2020-12-02 11:07:09 +01:00
|
|
|
"name": "ocean-subgraph",
|
2021-03-04 12:27:44 +01:00
|
|
|
"version": "1.1.0",
|
2020-11-20 13:12:02 +01:00
|
|
|
"scripts": {
|
2020-12-11 11:37:09 +01:00
|
|
|
"start": "",
|
2021-04-13 17:10:03 +02:00
|
|
|
"bargesetup": "node ./scripts/generatebargesubgraph.js",
|
2020-11-20 13:12:02 +01:00
|
|
|
"create": "graph create oceanprotocol/ocean-subgraph --node https://api.thegraph.com/deploy/",
|
|
|
|
"create:local": "graph create oceanprotocol/ocean-subgraph --node http://127.0.0.1:8020",
|
2021-04-13 17:10:03 +02:00
|
|
|
"create:local-barge": "graph create oceanprotocol/ocean-subgraph --node http://127.0.0.1:9020",
|
2021-01-20 12:11:10 +01:00
|
|
|
"create:local-rinkeby": "graph create oceanprotocol/ocean-subgraph --node http://127.0.0.1:8020",
|
|
|
|
"create:local-ropsten": "graph create oceanprotocol/ocean-subgraph --node http://127.0.0.1:8020",
|
2021-02-22 15:09:29 +01:00
|
|
|
"create:local-polygon": "graph create oceanprotocol/ocean-subgraph --node http://127.0.0.1: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",
|
2020-12-02 11:07:09 +01:00
|
|
|
"deploy": "graph deploy oceanprotocol/ocean-subgraph --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
|
|
|
|
"deploy:beta": "graph deploy oceanprotocol/ocean-subgraph-beta --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
|
2021-01-20 12:11:10 +01:00
|
|
|
"deploy:local": "graph deploy oceanprotocol/ocean-subgraph subgraph.yaml --debug --ipfs http://127.0.0.1:5001 --node http://127.0.0.1:8020",
|
2021-04-13 17:10:03 +02:00
|
|
|
"deploy:local-barge": "graph deploy oceanprotocol/ocean-subgraph subgraph.barge.yaml --debug --ipfs http://127.0.0.1:5001 --node http://127.0.0.1:9020",
|
2021-01-20 12:11:10 +01:00
|
|
|
"deploy:local-rinkeby": "graph deploy oceanprotocol/ocean-subgraph subgraph.rinkeby.yaml --debug --ipfs http://127.0.0.1:5001 --node http://127.0.0.1:8020",
|
|
|
|
"deploy:local-ropsten": "graph deploy oceanprotocol/ocean-subgraph subgraph.ropsten.yaml --debug --ipfs http://127.0.0.1:5001 --node http://127.0.0.1:8020",
|
2021-02-22 15:09:29 +01:00
|
|
|
"deploy:local-polygon": "graph deploy oceanprotocol/ocean-subgraph subgraph.polygon.yaml --debug --ipfs http://127.0.0.1:5001 --node http://127.0.0.1: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'",
|
2020-12-11 11:37:09 +01:00
|
|
|
"lint": "eslint --ignore-path .gitignore --ext .js --ext .ts --ext .tsx .",
|
|
|
|
"format": "prettier --ignore-path .gitignore './**/*.{css,yml,js,ts,tsx,json,yaml}' --write",
|
|
|
|
"type-check": "tsc --noEmit",
|
|
|
|
"release": "release-it --non-interactive",
|
|
|
|
"changelog": "auto-changelog -p"
|
2020-11-20 13:12:02 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-03-04 11:59:27 +01:00
|
|
|
"@graphprotocol/graph-cli": "^0.20.0",
|
2021-03-04 11:55:27 +01:00
|
|
|
"@graphprotocol/graph-ts": "^0.20.0",
|
2020-12-11 11:37:09 +01:00
|
|
|
"@release-it/bumper": "^2.0.0",
|
2021-04-13 17:10:03 +02:00
|
|
|
"@types/chai": "^4.2.16",
|
|
|
|
"@types/chai-spies": "^1.0.3",
|
|
|
|
"@types/mocha": "^8.2.2",
|
2021-03-25 09:36:50 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.19.0",
|
2021-03-25 08:41:43 +01:00
|
|
|
"@typescript-eslint/parser": "^4.18.0",
|
2020-12-11 11:37:09 +01:00
|
|
|
"auto-changelog": "^2.2.1",
|
2021-04-13 17:10:03 +02:00
|
|
|
"chai": "^4.3.4",
|
|
|
|
"chai-spies": "^1.0.0",
|
2021-03-15 12:25:44 +01:00
|
|
|
"eslint": "^7.22.0",
|
2020-12-11 11:37:09 +01:00
|
|
|
"eslint-config-oceanprotocol": "^1.5.0",
|
2021-03-04 11:52:01 +01:00
|
|
|
"eslint-config-prettier": "^8.1.0",
|
2021-02-09 11:13:31 +01:00
|
|
|
"eslint-plugin-prettier": "^3.3.1",
|
2021-04-13 17:10:03 +02:00
|
|
|
"mocha": "^8.3.2",
|
|
|
|
"mock-local-storage": "^1.1.17",
|
2020-12-11 11:37:09 +01:00
|
|
|
"prettier": "^2.2.1",
|
2021-03-25 08:43:12 +01:00
|
|
|
"release-it": "^14.5.0",
|
2021-04-13 17:10:03 +02:00
|
|
|
"ts-node-register": "^1.0.0",
|
2021-03-09 12:01:05 +01:00
|
|
|
"typescript": "^4.2.3"
|
2020-11-20 13:12:02 +01:00
|
|
|
},
|
2021-04-13 17:10:03 +02:00
|
|
|
"dependencies": {
|
|
|
|
"@oceanprotocol/lib": "^0.12.2",
|
|
|
|
"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": {
|
|
|
|
"after:bump": "npm run changelog"
|
|
|
|
},
|
|
|
|
"plugins": {
|
|
|
|
"@release-it/bumper": {
|
|
|
|
"out": [
|
|
|
|
"package.json",
|
|
|
|
"package-lock.json"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"git": {
|
|
|
|
"tagName": "v${version}"
|
|
|
|
},
|
|
|
|
"github": {
|
|
|
|
"release": true
|
|
|
|
},
|
|
|
|
"npm": {
|
|
|
|
"publish": false
|
|
|
|
}
|
2020-11-20 13:12:02 +01:00
|
|
|
}
|
|
|
|
}
|