-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 1.13 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
{
"name": "ethereum-blocks",
"author": "Graph BuildersDAO",
"license": "CC BY-NC-ND 4.0",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ ptPierre/ethereum-blocks",
"create-local": "graph create --node http://localhost:8020/ ptPierre/ethereum-blocks",
"remove-local": "graph remove --node http://localhost:8020/ ptPierre/ethereum-blocks",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 ptPierre/ethereum-blocks",
"deploy-studio": "graph build && graph deploy --studio ",
"prepare-build": "cross-env ts-node ./script/build",
"deploy-all-studio": "cross-env ts-node ./script/deploy-studio",
"deploy-single-studio": "cross-env ts-node ./script/deploy-single",
"test": "graph test"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.71.0",
"@graphprotocol/graph-ts": "^0.35.1",
"@types/node": "^18.11.18",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"yargs": "17.7.2",
"mustache": "^3.1.0"
}
}