-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 1.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "bonds-subgraph",
"version": "1.0.0",
"description": "Subgraph for bonds",
"main": "index.js",
"author": "Jem <0x0xjem@gmail.com>",
"license": "MIT",
"scripts": {
"codegen": "graph codegen && yarn eslint --config ./.eslintrc.json --fix generated/",
"build": "graph build",
"deploy": "source .subgraph-version && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ olympusdao/bonds",
"deploy:dev": "source .subgraph-version && source .env && graph deploy --studio bonds --deploy-key $GRAPH_STUDIO_TOKEN --version-label $SUBGRAPH_VERSION",
"deploy:dev-goerli": "source .subgraph-version && source .env && graph deploy bonds-goerli subgraph.goerli.yaml --studio --deploy-key $GRAPH_STUDIO_TOKEN --version-label $SUBGRAPH_VERSION",
"test": "graph test --version 0.5.3",
"test:force": "yarn test --recompile",
"auth": "source .env && graph auth --product hosted-service $GRAPH_TOKEN"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.34.0",
"@graphprotocol/graph-ts": "^0.28.0",
"assemblyscript-json": "^1.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"matchstick-as": "^0.5.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
}
}