-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
32 lines (32 loc) · 1.67 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": "token-holders-subgraph",
"version": "1.0.0",
"main": "index.js",
"author": "Jem <[email protected]>",
"license": "MIT",
"scripts": {
"codegen": "graph codegen && yarn eslint --config ./.eslintrc.json --fix generated/",
"build": "graph build",
"deploy:hosted": "source .subgraph-version && source .env && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ --deploy-key $GRAPH_TOKEN olympusdao/token-holders",
"deploy:hosted:arbitrum": "source .subgraph-version && source .env && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ --deploy-key $GRAPH_TOKEN 0xjem/token-holders-arbitrum subgraph-arbitrum.yaml",
"deploy:ethereum": "source .subgraph-version && source .env && graph deploy --studio --deploy-key $GRAPH_STUDIO_TOKEN --version-label $SUBGRAPH_VERSION token-holders subgraph.yaml",
"deploy:arbitrum": "source .subgraph-version && source .env && graph deploy --studio --deploy-key $GRAPH_STUDIO_TOKEN --version-label $SUBGRAPH_VERSION token-holders-arbitrum subgraph-arbitrum.yaml",
"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.49.0",
"@graphprotocol/graph-ts": "^0.30.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": "^7.0.0",
"matchstick-as": "^0.5.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
}
}