-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·80 lines (80 loc) · 3.29 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@settlemint/solidity-empty",
"version": "4.0.0",
"description": "An empty solidity project",
"scripts": {
"lint": "yarn solhint 'contracts/**/*.sol'",
"compile": "yarn hardhat compile",
"test": "yarn hardhat test",
"smartcontract:deploy": "yarn hardhat deploy --network ${DEFAULT_NODE}",
"smartcontract:deploy:reset": "yarn hardhat deploy --network ${DEFAULT_NODE} --reset",
"graph:all": "yarn graph:config && yarn graph:compile && yarn graph:codegen && yarn graph:build && yarn graph:deploy",
"graph:config": "yarn hardhat graph:config --network ${DEFAULT_NODE}",
"graph:compile": "yarn graph-compiler --config subgraph.config.json --include node_modules/@openzeppelin/subgraphs/src/datasources subgraph/datasources --export-schema --export-subgraph",
"graph:codegen": "yarn graph codegen generated/solidity-empty.subgraph.yaml",
"graph:build": "yarn graph build generated/solidity-empty.subgraph.yaml",
"graph:deploy": "/bin/bash -c 'eval \"$(shdotenv -e ./.secrets/env)\"; if [ \"$MIDDLEWARE\" == \"\" ]; then echo \"You have not launched a graph middleware for this smart contract set, aborting...\"; exit 1; fi; graph create --node ${MIDDLEWARE} ${SCS}; graph deploy --version-label v1.0.$(date +%s) --node ${MIDDLEWARE} --ipfs ${MIDDLEWARE_IPFS} ${SCS} generated/solidity-empty.subgraph.yaml'"
},
"author": "SettleMint <[email protected]>",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@nomiclabs/hardhat-solhint": "2.0.1",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@typechain/ethers-v5": "10.1.0",
"@typechain/hardhat": "6.1.2",
"@types/chai": "^4.3.3",
"@types/lodash": "4.14.184",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"chai": "^4.3.6",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.1",
"ethereum-waffle": "3.4.4",
"ethers": "5.7.0",
"form-data": "4.0.0",
"hardhat": "^2.11.2",
"hardhat-abi-exporter": "2.10.0",
"hardhat-deploy": "0.11.12",
"hardhat-log-remover": "2.0.2",
"prettier": "2.7.1",
"prettier-plugin-solidity": "1.0.0-dev.23",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.7.21",
"ts-generator": "0.1.1",
"ts-node": "^10.9.1",
"typechain": "8.1.0",
"typescript": "^4.8.3",
"yaml": "2.1.1"
},
"dependencies": {
"@amxx/graphprotocol-utils": "1.1.0",
"@graphprotocol/graph-cli": "0.33.1",
"@graphprotocol/graph-ts": "0.27.0",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@openzeppelin/subgraphs": "0.1.8",
"@settlemint/graph-middleware": "1.9.54",
"chalk": "4.1.2",
"image-size": "1.0.2",
"ipfs-http-client": "56.0.3",
"it-all": "1.0.6",
"keccak256": "1.0.6",
"lodash": "4.17.21",
"merkletreejs": "0.2.32",
"nft.storage": "6.4.1",
"uint8arrays": "3.1.0"
},
"resolutions": {
"colors": "1.4.0",
"@web-std/fetch": "4.1.0"
}
}