2020-08-17 10:17:04 +00:00
|
|
|
{
|
|
|
|
"name": "gelato-instadapp",
|
|
|
|
"version": "1.0.0",
|
2020-08-26 12:44:47 +00:00
|
|
|
"description": "The smart contract and tests for gelato-instadapp prototypes",
|
2020-08-17 10:17:04 +00:00
|
|
|
"repository": "https://github.com/gelatodigital/gelato-instadapp",
|
|
|
|
"author": "gitpusha",
|
|
|
|
"private": false,
|
2020-10-07 17:45:46 +00:00
|
|
|
"scripts": {
|
|
|
|
"rebase": "HUSKY_SKIP_HOOKS=1 git rebase",
|
2020-10-19 16:17:27 +00:00
|
|
|
"compile": "npx hardhat compile",
|
2020-11-16 16:55:04 +00:00
|
|
|
"deploy:mainnet": "npx hardhat deploy --network mainnet",
|
2020-10-07 17:45:46 +00:00
|
|
|
"format": "prettier --write .",
|
2020-10-18 10:30:16 +00:00
|
|
|
"lint": "eslint --cache . && yarn lint:sol",
|
2020-11-02 17:26:30 +00:00
|
|
|
"lint:sol": "solhint 'contracts/**/*.sol'",
|
2020-10-18 10:30:16 +00:00
|
|
|
"lint:fix": "eslint --cache --fix . && solhint --fix contracts/**/*.sol",
|
2020-11-04 17:09:34 +00:00
|
|
|
"test": "npx hardhat test",
|
2020-11-19 09:39:23 +00:00
|
|
|
"test:gas": "REPORT_GAS=1 npx hardhat test",
|
2020-11-02 14:52:03 +00:00
|
|
|
"debug": "DEBUG=true yarn compile && npx hardhat test"
|
2020-10-07 17:45:46 +00:00
|
|
|
},
|
2020-08-17 10:17:04 +00:00
|
|
|
"devDependencies": {
|
2020-11-11 16:06:07 +00:00
|
|
|
"@codechecks/client": "0.1.10",
|
2020-11-25 10:50:24 +00:00
|
|
|
"@gelatonetwork/core": "1.4.1",
|
2020-11-28 14:54:22 +00:00
|
|
|
"@nomiclabs/hardhat-ethers": "2.0.1",
|
2020-10-19 16:17:27 +00:00
|
|
|
"@nomiclabs/hardhat-waffle": "2.0.0",
|
2020-11-28 14:54:22 +00:00
|
|
|
"@openzeppelin/contracts": "3.3.0",
|
2020-10-07 17:45:46 +00:00
|
|
|
"chai": "4.2.0",
|
2020-08-17 10:17:04 +00:00
|
|
|
"dotenv": "8.2.0",
|
2020-11-24 16:49:27 +00:00
|
|
|
"eslint": "7.14.0",
|
2020-11-02 10:51:49 +00:00
|
|
|
"eslint-config-prettier": "6.15.0",
|
2020-11-25 10:50:24 +00:00
|
|
|
"ethereum-waffle": "3.2.1",
|
2020-11-27 12:38:13 +00:00
|
|
|
"ethers": "5.0.23",
|
2020-11-28 14:54:22 +00:00
|
|
|
"hardhat": "2.0.4",
|
|
|
|
"hardhat-deploy": "0.7.0-beta.32",
|
2020-11-19 09:39:23 +00:00
|
|
|
"hardhat-deploy-ethers": "0.3.0-beta.6",
|
2020-11-11 16:06:07 +00:00
|
|
|
"hardhat-gas-reporter": "1.0.1",
|
2020-10-07 17:45:46 +00:00
|
|
|
"husky": ">=4",
|
2020-11-24 16:49:27 +00:00
|
|
|
"lint-staged": "10.5.2",
|
2020-11-28 14:54:22 +00:00
|
|
|
"prettier": "2.2.1",
|
2020-11-24 16:49:27 +00:00
|
|
|
"prettier-plugin-solidity": "1.0.0-beta.1",
|
2020-11-10 15:52:38 +00:00
|
|
|
"solhint": "3.3.2",
|
2020-10-18 10:30:16 +00:00
|
|
|
"solhint-plugin-prettier": "0.0.5"
|
2020-10-07 17:45:46 +00:00
|
|
|
},
|
|
|
|
"dependencies": {},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2020-10-18 10:30:16 +00:00
|
|
|
"pre-commit": "yarn install && yarn compile --force && yarn lint:sol && lint-staged",
|
|
|
|
"pre-push": "git fetch origin && HUSKY_SKIP_HOOKS=1 git rebase origin/master && yarn test"
|
2020-10-07 17:45:46 +00:00
|
|
|
}
|
2020-08-17 10:17:04 +00:00
|
|
|
},
|
2020-10-07 17:45:46 +00:00
|
|
|
"lint-staged": {
|
|
|
|
"*.js": "eslint --cache --fix",
|
2020-11-17 07:29:09 +00:00
|
|
|
"*.{js,sol,json,css,md}": "prettier --write"
|
2020-10-07 17:45:46 +00:00
|
|
|
}
|
2020-08-17 10:17:04 +00:00
|
|
|
}
|