|
| 1 | +{ |
| 2 | + "name": "@graphprotocol/horizon", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "", |
| 5 | + "author": "The Graph Team", |
| 6 | + "license": "GPL-2.0-or-later", |
| 7 | + "scripts": { |
| 8 | + "lint:ts": "eslint '**/*.{js,ts}' --fix", |
| 9 | + "lint:sol": "prettier --write contracts/**/*.sol && solhint --noPrompt --fix contracts/**/*.sol --config node_modules/solhint-graph-config/index.js", |
| 10 | + "lint": "yarn lint:ts && yarn lint:sol", |
| 11 | + "clean": "rm -rf build cache typechain-types", |
| 12 | + "build": "forge build && hardhat compile", |
| 13 | + "test": "forge test && hardhat test" |
| 14 | + }, |
| 15 | + "devDependencies": { |
| 16 | + "@graphprotocol/contracts": "workspace:^7.0.0", |
| 17 | + "@nomicfoundation/hardhat-chai-matchers": "^2.0.0", |
| 18 | + "@nomicfoundation/hardhat-ethers": "^3.0.0", |
| 19 | + "@nomicfoundation/hardhat-foundry": "^1.1.1", |
| 20 | + "@nomicfoundation/hardhat-network-helpers": "^1.0.0", |
| 21 | + "@nomicfoundation/hardhat-toolbox": "^4.0.0", |
| 22 | + "@nomicfoundation/hardhat-verify": "^2.0.0", |
| 23 | + "@typechain/ethers-v6": "^0.5.0", |
| 24 | + "@typechain/hardhat": "^9.0.0", |
| 25 | + "@types/chai": "^4.2.0", |
| 26 | + "@types/mocha": ">=9.1.0", |
| 27 | + "@types/node": ">=16.0.0", |
| 28 | + "chai": "^4.2.0", |
| 29 | + "eslint": "^8.56.0", |
| 30 | + "eslint-graph-config": "workspace:^0.0.1", |
| 31 | + "ethers": "^6.4.0", |
| 32 | + "hardhat": "^2.20.1", |
| 33 | + "hardhat-gas-reporter": "^1.0.8", |
| 34 | + "lint-staged": "^15.2.2", |
| 35 | + "prettier": "^3.2.5", |
| 36 | + "prettier-plugin-solidity": "^1.3.1", |
| 37 | + "solhint": "^4.5.2", |
| 38 | + "solhint-graph-config": "workspace:^0.0.1", |
| 39 | + "solidity-coverage": "^0.8.0", |
| 40 | + "ts-node": ">=8.0.0", |
| 41 | + "typechain": "^8.3.0", |
| 42 | + "typescript": "^5.3.3" |
| 43 | + }, |
| 44 | + "lint-staged": { |
| 45 | + "contracts/**/*.sol": [ |
| 46 | + "yarn lint:sol" |
| 47 | + ], |
| 48 | + "**/*.ts": [ |
| 49 | + "yarn lint:ts" |
| 50 | + ], |
| 51 | + "**/*.js": [ |
| 52 | + "yarn lint:ts" |
| 53 | + ], |
| 54 | + "**/*.json": [ |
| 55 | + "yarn lint:ts" |
| 56 | + ] |
| 57 | + } |
| 58 | +} |
0 commit comments