generated from ZumZoom/solidity-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.13 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
{
"name": "@1inch/gas-comparison",
"version": "1.0.0",
"description": "Gas Comparison Repository",
"repository": {
"type": "git",
"url": "[email protected]:1inch/gas-comparison.git"
},
"license": "MIT",
"dependencies": {
"@1inch/limit-order-protocol-contract": "4.0.3",
"@1inch/limit-order-settlement": "2.1.0",
"@1inch/solidity-utils": "6.0.0",
"@openzeppelin/contracts": "5.1.0",
"@uniswap/universal-router-sdk": "2.2.2",
"solmate": "6.8.0"
},
"devDependencies": {
"@0x/protocol-utils": "11.24.2",
"@nomicfoundation/hardhat-chai-matchers": "2.0.8",
"@nomicfoundation/hardhat-ethers": "3.0.8",
"@nomicfoundation/hardhat-network-helpers": "1.0.12",
"@nomicfoundation/hardhat-verify": "2.0.11",
"@paraswap/sdk": "7.0.0",
"@uniswap/uniswapx-sdk": "2.0.1-alpha.10",
"chai": "4.5.0",
"cli-table3": "0.6.5",
"dotenv": "16.4.5",
"eslint": "9.14.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.13.2",
"eslint-plugin-promise": "7.1.0",
"ethers": "6.13.4",
"hardhat": "2.22.15",
"hardhat-dependency-compiler": "1.2.1",
"hardhat-deploy": "0.14.0",
"hardhat-gas-reporter": "2.2.1",
"hardhat-tracer": "3.1.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"solc": "0.8.27",
"solhint": "5.0.3",
"solidity-coverage": "0.8.13",
"solidity-docgen": "0.6.0-beta.36"
},
"scripts": {
"clean": "rimraf artifacts cache coverage coverage.json contracts/hardhat-dependency-compiler",
"coverage": "hardhat coverage",
"deploy": "hardhat deploy --network",
"docify": "yarn hardhat docgen",
"fmt": "yarn prettier --write test deploy",
"fmt:check": "yarn prettier --check test deploy",
"lint": "yarn run fmt:check && yarn run lint:js && yarn run lint:sol",
"lint:fix": "yarn run fmt && yarn run lint:js:fix && yarn run lint:sol:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:fix": "solhint --max-warnings 0 \"contracts/**/*.sol\" --fix",
"test:ci": "hardhat test"
}
}