-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 1.31 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
33
{
"name": "staking-subgraph",
"version": "1.0.0",
"description": "Subgraph to track staking activity",
"main": "index.js",
"author": "Jem <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/OlympusDAO/staking-subgraph",
"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/staking",
"deploy:dev": "source .subgraph-version && graph deploy --studio staking --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",
"auth:dev": "source .env && graph auth --product subgraph-studio $GRAPH_STUDIO_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"
}
}