-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
25 lines (25 loc) · 970 Bytes
/
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
{
"name": "aggregators-subgraph",
"license": "MIT",
"scripts": {
"prepare": "ts-node scripts/prepare.ts",
"codegen-local": "graph codegen subgraph.private.yaml",
"build-local": "graph build subgraph.private.yaml",
"create-local": "graph create --node http://localhost:8020/ RequestNetwork/price-aggregators-private",
"remove-local": "graph remove --node http://localhost:8020/ RequestNetwork/price-aggregators-private",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 RequestNetwork/price-aggregators-private subgraph.private.yaml"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.72.1",
"@graphprotocol/graph-ts": "^0.35.1"
},
"devDependencies": {
"@requestnetwork/smart-contracts": "0.45.1-next.0",
"@types/mustache": "^4.1.2",
"@types/node": "^16.11.12",
"ethers": "^5.5.3",
"mustache": "^4.2.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}