mirror of
https://github.com/interep-project/contracts.git
synced 2026-04-17 03:00:51 -04:00
103 lines
3.6 KiB
JSON
103 lines
3.6 KiB
JSON
{
|
|
"name": "interrep-contracts",
|
|
"description": "InterRep smart contracts.",
|
|
"version": "0.1.0",
|
|
"author": {
|
|
"name": "Raphael Roullet"
|
|
},
|
|
"files": [
|
|
"/contracts"
|
|
],
|
|
"keywords": [
|
|
"blockchain",
|
|
"ethereum",
|
|
"hardhat",
|
|
"smart-contracts",
|
|
"solidity"
|
|
],
|
|
"license": "MIT",
|
|
"resolutions": {
|
|
"@ethersproject/wallet": "^5.2.0"
|
|
},
|
|
"scripts": {
|
|
"start": "hardhat node",
|
|
"clean": "hardhat clean",
|
|
"compile": "hardhat compile",
|
|
"mocks": "hardhat run ./scripts/mocks.ts",
|
|
"deploy:groups": "hardhat deploy:groups",
|
|
"deploy:reputation-badge": "hardhat deploy:reputation-badge",
|
|
"groups": "hardhat groups",
|
|
"mint": "hardhat mint",
|
|
"test": "hardhat test",
|
|
"coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
|
|
"lint": "yarn run lint:sol && yarn run lint:ts",
|
|
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
|
|
"lint:ts": "eslint --config ./.eslintrc.json --ignore-path ./.eslintignore --ext .js,.ts .",
|
|
"lint:fix": "yarn run lint:sol --fix && yarn run lint:ts --fix",
|
|
"prettier": "prettier --check --config ./.prettierrc.json \"**/*.{js,json,md,sol,ts}\"",
|
|
"prettier:write": "prettier --config ./.prettierrc.json --write \"**/*.{js,json,md,sol,ts}\"",
|
|
"typechain": "hardhat typechain",
|
|
"commit": "git-cz",
|
|
"precommit": "lint-staged"
|
|
},
|
|
"devDependencies": {
|
|
"@codechecks/client": "^0.1.10",
|
|
"@commitlint/cli": "^12.1.4",
|
|
"@commitlint/config-conventional": "^12.1.4",
|
|
"@ethersproject/abi": "^5.2.0",
|
|
"@ethersproject/abstract-signer": "^5.2.0",
|
|
"@ethersproject/bignumber": "^5.2.0",
|
|
"@ethersproject/bytes": "^5.2.0",
|
|
"@ethersproject/contracts": "^5.2.0",
|
|
"@ethersproject/providers": "^5.2.0",
|
|
"@nomiclabs/hardhat-ethers": "^2.0.2",
|
|
"@nomiclabs/hardhat-etherscan": "^2.1.5",
|
|
"@nomiclabs/hardhat-waffle": "^2.0.1",
|
|
"@openzeppelin/contracts": "^4.1.0",
|
|
"@openzeppelin/contracts-upgradeable": "^4.1.0",
|
|
"@openzeppelin/hardhat-upgrades": "^1.8.2",
|
|
"@typechain/ethers-v5": "^7.0.0",
|
|
"@typechain/hardhat": "^2.0.1",
|
|
"@types/chai": "^4.2.18",
|
|
"@types/fs-extra": "^9.0.11",
|
|
"@types/mocha": "^8.2.2",
|
|
"@types/node": "^15.6.1",
|
|
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
"@typescript-eslint/parser": "^4.25.0",
|
|
"chai": "^4.3.4",
|
|
"circomlibjs": "^0.1.0",
|
|
"commitizen": "^4.2.4",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"dotenv": "^10.0.0",
|
|
"eslint": "^7.27.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"ethereum-waffle": "^3.3.0",
|
|
"ethers": "^5.2.0",
|
|
"fs-extra": "^10.0.0",
|
|
"hardhat": "^2.3.0",
|
|
"hardhat-gas-reporter": "^1.0.4",
|
|
"husky": "^6.0.0",
|
|
"incrementalquintree": "^1.0.7",
|
|
"lint-staged": "^11.0.0",
|
|
"mocha": "^8.4.0",
|
|
"prettier": "^2.3.0",
|
|
"prettier-plugin-solidity": "^1.0.0-beta.11",
|
|
"shelljs": "^0.8.4",
|
|
"solhint": "^3.3.6",
|
|
"solhint-plugin-prettier": "^0.0.5",
|
|
"solidity-coverage": "^0.7.16",
|
|
"ts-generator": "^0.1.1",
|
|
"ts-node": "^10.0.0",
|
|
"typechain": "^5.0.0",
|
|
"typescript": "~4.2.4"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@interrep/reputation-criteria": "^0.12.0"
|
|
}
|
|
}
|