-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
48 lines (48 loc) · 1.8 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
{
"name": "tranchess-core",
"scripts": {
"check": "yarn run lint && prettier --ignore-path .gitignore -c .",
"fmt": "prettier --ignore-path .gitignore -w .",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"test": "hardhat test",
"coverage": "hardhat coverage --solcoverjs ./.core.solcover.js",
"cc": "hardhat clean && hardhat compile"
},
"devDependencies": {
"@chainlink/contracts": "^0.2.2",
"@ethersproject/hardware-wallets": "^5.7.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^3.4.2",
"@openzeppelin/contracts-upgradeable": "^3.4.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "*",
"@types/readline-sync": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.3",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.9.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.7.2",
"hardhat": "^2.17.0",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"readline-sync": "^1.4.10",
"solidity-coverage": "^0.8.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"packageManager": "yarn@3.6.1"
}