-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.88 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
34
35
36
{
"name": "mento-subgraph-gen",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"auth": "npx graph auth --product hosted-service",
"auth:studio": "graph auth --studio",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./generated",
"testnet:compile": "npx graph-compiler --config config.testnet.json --include node_modules/@openzeppelin/subgraphs/src/datasources --include src/datasources --export-schema --export-subgraph",
"testnet:codegen": "npx graph codegen ./generated/mento.testnet.subgraph.yaml",
"testnet:build": "npx graph build ./generated/mento.testnet.subgraph.yaml",
"testnet:build-all": "npm run clean && npm run testnet:compile && npm run testnet:codegen && npm run testnet:build",
"testnet:deploy": "npx graph deploy --studio mento-governance-alfajores ./generated/mento.testnet.subgraph.yaml",
"mainnet:compile": "npx graph-compiler --config config.mainnet.json --include node_modules/@openzeppelin/subgraphs/src/datasources --include src/datasources --export-schema --export-subgraph",
"mainnet:codegen": "npx graph codegen ./generated/mento.mainnet.subgraph.yaml",
"mainnet:build": "npx graph build ./generated/mento.mainnet.subgraph.yaml",
"mainnet:build-all": "npm run clean && npm run mainnet:compile && npm run mainnet:codegen && npm run mainnet:build",
"mainnet:deploy": "npx graph deploy --studio mento-governance-celo ./generated/mento.mainnet.subgraph.yaml"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@amxx/graphprotocol-utils": "^1.1.0",
"@graphprotocol/graph-cli": "^0.65.0",
"@graphprotocol/graph-ts": "^0.32.0",
"@openzeppelin/contracts": "^4.8.1",
"@openzeppelin/subgraphs": "openzeppelin/openzeppelin-subgraphs"
},
"overrides": {
"@graphprotocol/graph-cli": "^0.65.0",
"@graphprotocol/graph-ts": "^0.32.0"
}
}