-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.41 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
30
31
32
33
34
{
"name": "fuseV1-subgraph",
"version": "0.5.0",
"main": "subgraph.yaml",
"repository": {
"type": "git",
"url": "https://github.com/platocrat/fuseV1-subgraph.git"
},
"scripts": {
"compile-cp": "npx truffle compile --config truffle-config-cp.js",
"compile-fuse": "npx truffle compile --config truffle-config-fuse.js",
"compile": "npm run compile-cp && npm run compile-fuse",
"build-contract": "solc contracts/Gravity.sol --abi -o abis --overwrite && solc contracts/Gravity.sol --bin -o bin --overwrite",
"create": "graph create platocrat/fuse-subgraph --node https://api.thegraph.com/deploy/",
"create-local": "graph create platocrat/fuse-subgraph --node http://127.0.0.1:8020",
"codegen": "graph codegen --output-dir src/types/",
"build": "graph build",
"deploy": "graph deploy --debug --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ platocrat/fuse-subgraph",
"deploy-local": "graph deploy platocrat/fuse-subgraph --ipfs http://localhost:5001 --node http://127.0.0.1:8020"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.20.0",
"@graphprotocol/graph-ts": "^0.20.0",
"dotenv": "^10.0.0",
"typescript": "^4.3.4"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^3.4.0",
"@truffle/hdwallet-provider": "^1.4.1",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"truffle": "^5.3.11"
}
}