Gelato-automations/package.json

44 lines
1.3 KiB
JSON

{
"name": "gelato-instadapp",
"version": "1.0.0",
"description": "The smart contract and tests for gelato-instadapp prototypes",
"repository": "https://github.com/gelatodigital/gelato-instadapp",
"author": "gitpusha",
"private": false,
"scripts": {
"rebase": "HUSKY_SKIP_HOOKS=1 git rebase",
"compile": "npx buidler compile",
"format": "prettier --write .",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"test": "npx buidler test"
},
"devDependencies": {
"@gelatonetwork/core": "0.5.3",
"@nomiclabs/buidler": "1.4.7",
"@nomiclabs/buidler-ethers": "2.0.2",
"@nomiclabs/buidler-ganache": "1.3.3",
"@nomiclabs/buidler-waffle": "2.1.0",
"chai": "4.2.0",
"dotenv": "8.2.0",
"eslint": "7.10.0",
"eslint-config-prettier": "6.12.0",
"ethereum-waffle": "3.1.1",
"ethers": "5.0.17",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "2.1.2"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "yarn compile; lint-staged;",
"pre-push": "git fetch origin && HUSKY_SKIP_HOOKS=1 git rebase origin/master && yarn compile && lint-staged; yarn test"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}