mirror of
https://github.com/luxfi/perpetual.git
synced 2026-07-27 04:32:33 +00:00
* 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
30 lines
788 B
JSON
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"
|
|
}
|
|
}
|