This repository has been archived by the owner on Apr 19, 2024. It is now read-only.
forked from Uniswap/v2-core
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
71 lines (71 loc) · 2.02 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
69
70
71
{
"name": "@uniswap/v2-core",
"description": "Build uniswap v2 with solidity 0.8",
"version": "1.0.1",
"homepage": "https://uniswap.org",
"repository": {
"type": "git",
"url": "https://github.com/islishude/uniswapv2-solc0.8"
},
"keywords": [
"uniswap",
"ethereum",
"v2",
"core",
"uniswap-v2"
],
"files": [
"contracts",
"!contracts/test",
"typechain-types",
"!typechain-types/test",
"artifacts/contracts",
"!artifacts/test",
"!artifacts/contracts/**/*.dbg.json"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.3.11",
"@types/mocha": ">=10.0.6",
"@types/node": ">=20.11.24",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"chai": "^4.4.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"ethers": "^6.11.1",
"hardhat": "^2.22.2",
"hardhat-gas-reporter": "^1.0.10",
"prettier": "^3.2.4",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^4.5.2",
"solidity-coverage": "^0.8.11",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typescript": "^5.4.3"
},
"scripts": {
"lint": "prettier --plugin=prettier-plugin-solidity --check src 'contracts/**/*.sol' && solhint 'contracts/**/*.sol'",
"lint:fix": "prettier --plugin=prettier-plugin-solidity --write src 'contracts/**/*.sol'",
"clean": "rimraf artifacts cache types",
"precompile": "pnpm run clean",
"compile": "hardhat compile",
"build": "pnpm run compile",
"test": "hardhat test",
"prepublishOnly": "pnpm run test"
},
"license": "GPL-3.0-or-later",
"packageManager": "[email protected]",
"prettier": {
"trailingComma": "all"
}
}