-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.39 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
35
36
37
38
39
{
"name": "Generic-Subgraph-Testing",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ tally/compound-governance",
"deploy-dev": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ tally/compound-governance",
"create-local": "graph create --node http://localhost:8020/ tally/compound-governance",
"remove-local": "graph remove --node http://localhost:8020/ tally/compound-governance",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 tally/compound-governance"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@graphprotocol/graph-ts": "^0.20.0",
"@typechain/ethers-v5": "^6.0.1",
"dotenv": "^8.2.0",
"hardhat-typechain": "^0.3.5",
"ts-generator": "^0.1.1",
"typechain": "^4.0.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/mocha": "^8.2.1",
"apollo-fetch": "^0.7.0",
"chai": "^4.3.3",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.0.31",
"hardhat": "^2.1.0",
"solidity-coverage": "^0.7.15",
"ts-node": "^9.1.1"
}
}