{ "name": "ocean-subgraph", "version": "1.1.0", "scripts": { "start": "", "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", "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", "create:local-polygon": "graph create oceanprotocol/ocean-subgraph --node http://127.0.0.1:8020", "codegen": "graph codegen --output-dir src/@types", "build": "graph build", "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/", "deploy:local": "graph deploy oceanprotocol/ocean-subgraph subgraph.yaml --debug --ipfs http://127.0.0.1:5001 --node http://127.0.0.1:8020", "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", "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", "test": "npm run codegen && npm run lint && npm run type-check", "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" }, "devDependencies": { "@graphprotocol/graph-cli": "^0.20.0", "@graphprotocol/graph-ts": "^0.20.0", "@release-it/bumper": "^2.0.0", "@typescript-eslint/eslint-plugin": "^4.19.0", "@typescript-eslint/parser": "^4.18.0", "auto-changelog": "^2.2.1", "eslint": "^7.22.0", "eslint-config-oceanprotocol": "^1.5.0", "eslint-config-prettier": "^8.1.0", "eslint-plugin-prettier": "^3.3.1", "prettier": "^2.2.1", "release-it": "^14.5.0", "typescript": "^4.2.3" }, "dependencies": {}, "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 } } }