|
| 1 | +{ |
| 2 | + "name": "@t-network/solidity-contracts", |
| 3 | + "version": "0.0.1", |
| 4 | + "license": "MIT", |
| 5 | + "scripts": { |
| 6 | + "build": "hardhat compile", |
| 7 | + "format": "npm run lint && prettier --check .", |
| 8 | + "format:fix": "npm run lint:fix && prettier --write .", |
| 9 | + "lint": "npm run lint:js && npm run lint:sol", |
| 10 | + "lint:fix": "npm run lint:fix:js && npm run lint:fix:sol", |
| 11 | + "lint:fix:js": "eslint . --fix", |
| 12 | + "lint:fix:sol": "solhint 'contracts/**/*.sol' --fix", |
| 13 | + "lint:js": "eslint . ", |
| 14 | + "lint:sol": "solhint 'contracts/**/*.sol'", |
| 15 | + "test": "hardhat test" |
| 16 | + }, |
| 17 | + "devDependencies": { |
| 18 | + "@keep-network/prettier-config-keep": "github:keep-network/prettier-config-keep#d6ec02e", |
| 19 | + "@nomiclabs/hardhat-ethers": "^2.0.2", |
| 20 | + "@nomiclabs/hardhat-waffle": "^2.0.1", |
| 21 | + "chai": "^4.3.4", |
| 22 | + "eslint": "^7.27.0", |
| 23 | + "eslint-config-keep": "github:keep-network/eslint-config-keep#0c27ade", |
| 24 | + "ethereum-waffle": "^3.4.0", |
| 25 | + "ethers": "^5.4.1", |
| 26 | + "hardhat": "^2.4.3", |
| 27 | + "hardhat-gas-reporter": "^1.0.4", |
| 28 | + "prettier": "^2.3.2", |
| 29 | + "prettier-plugin-sh": "^0.7.1", |
| 30 | + "prettier-plugin-solidity": "^1.0.0-beta.14 ", |
| 31 | + "solhint": "^3.3.6", |
| 32 | + "solhint-config-keep": "github:keep-network/solhint-config-keep", |
| 33 | + "typescript": "^4.3.2" |
| 34 | + } |
| 35 | +} |
0 commit comments