forked from 1inch/limit-order-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.88 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
{
"name": "@1inch/limit-order-protocol-contract",
"version": "3.0.0",
"description": "1inch Limit Order Protocol",
"repository": {
"type": "git",
"url": "[email protected]:1inch/limit-order-protocol.git"
},
"license": "MIT",
"files": [
"contracts/*.sol",
"contracts/helpers",
"contracts/interfaces",
"contracts/libraries",
"contracts/mocks"
],
"dependencies": {
"@1inch/solidity-utils": "2.2.2",
"@chainlink/contracts": "0.5.1",
"@openzeppelin/contracts": "4.7.3"
},
"devDependencies": {
"@metamask/eth-sig-util": "4.0.1",
"@nomicfoundation/hardhat-chai-matchers": "1.0.4",
"@nomicfoundation/hardhat-network-helpers": "1.0.6",
"@nomiclabs/hardhat-ethers": "2.2.1",
"@nomiclabs/hardhat-etherscan": "3.1.2",
"chai": "4.3.6",
"dotenv": "16.0.3",
"eslint": "8.26.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.3.0",
"eslint-plugin-promise": "6.1.1",
"ethers": "5.7.2",
"hardhat": "2.12.1",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.11.18",
"hardhat-gas-reporter": "1.0.9",
"rimraf": "3.0.2",
"solc": "0.8.17",
"solhint": "3.3.7",
"solidity-coverage": "0.8.2",
"solidity-docgen": "0.5.16"
},
"scripts": {
"clean": "rimraf artifacts cache coverage contracts/hardhat-dependency-compiler",
"deploy": "hardhat deploy --network",
"coverage": "hardhat coverage",
"docify": "npx solidity-utils-docify",
"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",
"lint": "yarn run lint:js && yarn run lint:sol",
"lint:fix": "yarn run lint:js:fix && yarn run lint:sol:fix",
"test": "hardhat test --parallel",
"test:ci": "hardhat test"
}
}