package.json 2.23 KB
Newer Older
John Doe's avatar
John Doe committed
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
{
  "name": "offshift-dev",
  "version": "1.0.0",
  "description": "OffShift protocol",
  "main": "hardhat.config",
  "type": "commonjs",
  "directories": {
    "test": "test"
  },
  "author": "dev",
  "license": "MIT",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "solhint": "solhint -f table contracts/**/*.sol",
    "prettier": "prettier --write 'contracts/**/*.sol'",
    "prettier:solidity": "prettier --write contracts/**/*.sol",
    "lint": "prettier --list-different 'contracts/**/*.sol'",
    "compile": "npx hardhat size-contracts && npx hardhat compile",
    "coverage": "npx hardhat size-contracts && npx hardhat coverage --network hardhat",
    "size": "npx hardhat size-contracts"
  },
  "dependencies": {
    "@chainlink/contracts": "^0.4.0",
    "@openzeppelin/contracts": "^4.3.0",
    "bn.js": "^5.2.0"
  },
  "devDependencies": {
    "@nomiclabs/hardhat-ethers": "^2.0.0",
    "@nomiclabs/hardhat-etherscan": "^2.1.2",
    "@nomiclabs/hardhat-truffle5": "^2.0.0",
    "@nomiclabs/hardhat-waffle": "^2.0.1",
    "@nomiclabs/hardhat-web3": "^2.0.0",
    "@types/chai": "^4.2.21",
    "@types/chai-as-promised": "^7.1.4",
    "@types/mocha": "^8.2.3",
    "@types/node": "^16.6.2",
    "bip-schnorr": "^0.6.3",
    "chai": "^4.3.4",
    "dotenv": "^8.6.0",
    "elliptic-curve-solidity": "^0.2.4",
    "eslint": "^6.8.0",
    "eslint-config-standard": "^14.1.1",
    "eslint-plugin-import": "^2.20.2",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.1",
    "ethereum-waffle": "^3.2.0",
    "ethers": "^5.4.6",
    "hardhat": "^2.6.8",
    "hardhat-contract-sizer": "^2.0.3",
    "hardhat-gas-reporter": "^1.0.4",
    "noble-secp256k1": "^1.2.9",
    "prettier": "^2.2.1",
    "prettier-plugin-solidity": "^1.0.0-beta.7",
    "solhint": "^3.3.4",
    "solhint-plugin-prettier": "0.0.5",
    "solidity-coverage": "^0.7.16",
    "ts-node": "^9.1.1",
    "typescript": "^4.2.4",
    "web3": "^1.5.2"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vitalii-odnovol/offshift-dev.git"
  },
  "bugs": {
    "url": "https://github.com/vitalii-odnovol/offshift-dev/issues"
  },
  "homepage": "https://github.com/vitalii-odnovol/offshift-dev#readme"
}