Files
perpetual/package.json
T
John ShuttandGitHub b3d8b5bdad fix(package): corrects some naming in package.json (#8)
* fix(package): corrects some naming in package.json

* fix(ganache): newer version works on node v14+

* fix(ganache): downgrade ganache to earlier version to avoid false revert errors
2021-04-01 13:15:21 -07:00

30 lines
788 B
JSON

{
"name": "launch-perpetual",
"version": "1.0.0",
"description": "Example stub repo to help launch a perpetual",
"private": true,
"scripts": {
"lint": "yarn run prettier --list-different",
"lint-fix": "yarn run prettier --write",
"prettier": "prettier './**/*.js' './**/*.md'",
"ganache-fork": "yarn ganache-cli -l 12000000 --fork"
},
"author": "UMA Team",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/UMAprotocol/launch-perpetual.git"
},
"devDependencies": {
"ganache-cli": "6.11.0",
"prettier": "^2.2.1"
},
"dependencies": {
"@ethersproject/bignumber": "^5.0.14",
"@truffle/hdwallet-provider": "^1.2.1",
"@uma/core": "^2.1.0",
"minimist": "^1.2.5",
"web3": "^1.3.1"
}
}