Files
semaphore/apps/subgraph/package.json
2024-01-10 13:21:05 +00:00

27 lines
994 B
JSON

{
"name": "semaphore-subgraph",
"type": "module",
"description": "Semaphore subgraph definition (The Graph).",
"license": "MIT",
"private": true,
"scripts": {
"codegen": "node scripts/generateSubgraph.js ${0} && graph codegen",
"build": "graph build",
"auth": "graph auth --studio",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ ${0}",
"create-local": "graph create --node http://localhost:8020/ semaphore",
"remove-local": "graph remove --node http://localhost:8020/ semaphore",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 semaphore",
"test": "graph test Semaphore -v 0.5.0"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.56.0",
"@graphprotocol/graph-ts": "^0.31.0"
},
"devDependencies": {
"@types/mustache": "^4.2.2",
"matchstick-as": "0.5.0",
"mustache": "^4.2.0"
}
}