-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
50 lines (50 loc) · 1.68 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
{
"name": "uniswap-v2-contract",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/33357/uniswap-v2-contract.git",
"author": "33357 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "hardhat compile",
"test": "hardhat test",
"test:cov": "hardhat coverage",
"localhost": "yarn run hardhat node --network hardhat --no-deploy --show-accounts",
"format:fix": "yarn prettier --write \"**/*.{ts,js,sol}\" && cd sdk && yarn format:fix"
},
"devDependencies": {
"@ethersproject/contracts": "^5.4.1",
"@nomiclabs/hardhat-ethers": "npm:[email protected]",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"@openzeppelin/hardhat-upgrades": "^1.9.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.2.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.3",
"@types/node": "^16.3.2",
"@types/promise-retry": "^1.1.3",
"@uniswap/v2-core": "^1.0.1",
"chai": "^4.3.4",
"chai-ethers": "^0.0.1",
"dotenv": "^10.0.0",
"env-cmd": "^10.1.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.4.5",
"hardhat": "^2.6.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.8.11",
"hardhat-gas-reporter": "^1.0.4",
"mocha": "^9.0.2",
"pino": "^7.0.0-rc.1",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"promise-retry": "^2.0.1",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.1.0",
"typechain": "^5.1.2",
"typescript": "^4.3.5",
"@uniswap/lib": "^4.0.1-alpha"
}
}