-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 943 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 943 Bytes
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
{
"name": "example-ethereum-gravatar",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/graphprotocol/graph-tooling",
"directory": "examples/ethereum-gravatar"
},
"license": "MIT",
"private": true,
"scripts": {
"build": "graph build",
"build:contract": "hardhat compile",
"codegen": "graph codegen",
"create": "graph create example --node https://api.studio.thegraph.com/deploy/",
"create-local": "graph create example --node http://127.0.0.1:8020",
"deploy": "graph deploy example --ipfs https://ipfs.thegraph.com/ipfs/ --node https://api.studio.thegraph.com/deploy/",
"deploy-local": "graph deploy example --ipfs http://127.0.0.1:5001 --node http://127.0.0.1:8020"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.90.1",
"@graphprotocol/graph-ts": "0.35.1",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"hardhat": "^2.22.17"
}
}