forked from Uniswap/v2-core
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@swapr/core",
"version": "0.3.20",
"files": [
"contracts",
"build",
".contracts.json"
],
"engines": {
"node": ">=10"
},
"dependencies": {},
"devDependencies": {
"@ethersproject/providers": "^5.4.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.14",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"arb-ethers-web3-bridge": "^0.7.3",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"ethereumjs-util": "^7.1.3",
"ethers": "^5.4.6",
"glob-promise": "^5.0.0",
"hardhat": "^2.10.0",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-deploy": "^0.9.0",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"hardhat-gas-reporter": "^1.0.8",
"mathjs": "^10.6.1",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"rimraf": "^3.0.0",
"solc": "0.5.16",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.20",
"ts-node": "10.7.0",
"typechain": "^8.1.0",
"typescript": "^4.5.2"
},
"scripts": {
"lint": "yarn prettier ./test/*.ts --check",
"lint:fix": "yarn prettier ./test/*.ts --write",
"clean": "rimraf ./build/",
"precompile": "yarn clean",
"compile": "hardhat compile",
"test": "yarn compile && hardhat test",
"test:coverage": "hardhat coverage",
"test:gasreport": "GAS_REPORT_ENABLED=true hardhat test",
"prepublishOnly": "yarn test",
"build-package": "ts-node scripts/bundler.ts",
"deploy:mainnet": "hardhat deploy --network mainnet --tags CORE_CONTRACTS",
"verify:mainnet": "set -a; . ./.env; set +a; npx hardhat --network mainnet etherscan-verify --api-key \"$ETHERSCAN_KEY\"",
"deploy:gnosis": "hardhat deploy --network gnosis --tags CORE_CONTRACTS",
"verify:gnosis": "set -a; . ./.env; set +a; npx hardhat --network gnosis etherscan-verify --api-key \"$ETHERSCAN_KEY\"",
"deploy:rinkeby": "hardhat deploy --network rinkeby --tags CORE_CONTRACTS",
"verify:rinkeby": "set -a; . ./.env; set +a; npx hardhat --network rinkeby etherscan-verify --api-key \"$ETHERSCAN_KEY\""
},
"license": "AGPL-3.0-or-later"
}