-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.09 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
{
"name": "storage-subgraph",
"license": "MIT",
"scripts": {
"prettier": "prettier --write .",
"prettier:ci": "prettier --check .",
"codegen": "graph codegen",
"build": "graph build",
"test": "graph test",
"test:docker": "graph test -d",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ RequestNetwork/request-storage",
"create-local": "graph create --node http://localhost:8020/ RequestNetwork/request-storage",
"remove-local": "graph remove --node http://localhost:8020/ RequestNetwork/request-storage",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 --version-label $(git rev-parse --short HEAD) RequestNetwork/request-storage",
"monitor-deployment-local": "ts-node cli/monitor.ts"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.54.0",
"@graphprotocol/graph-ts": "^0.31.0"
},
"devDependencies": {
"graphql-request": "^6.1.0",
"matchstick-as": "^0.5.2",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}