forked from Gelato-B2B/Istanbul_hack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.85 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.85 KB
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
72
73
74
75
{
"name": "liquorice-istanbul",
"version": "0.0.1",
"description": "Liquorice Istanbul Hack",
"license": "MIT",
"scripts": {
"clean": "rimraf artifacts cache coverage contracts/hardhat-dependency-compiler",
"deploy": "hardhat deploy --network",
"coverage": "hardhat coverage",
"format": "yarn format-js && yarn format-sol",
"format-js": "prettier '**/*.js' --write",
"format-sol": "prettier '**/*.sol' --write",
"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 lint:js && yarn lint:sol",
"lint:fix": "yarn lint:js:fix && yarn lint:sol:fix",
"test": "hardhat test --parallel"
},
"dependencies": {
"@1inch/fusion-sdk": "^0.0.5",
"@1inch/limit-order-protocol-contract": "^3.0.1",
"@1inch/permit-signed-approvals-utils": "^1.4.8",
"@1inch/solidity-utils": "2.2.6",
"@metamask/eth-sig-util": "^4.0.1",
"@openzeppelin/contracts": "4.8.0"
},
"devDependencies": {
"@ethereum-waffle/jest": "^3.2.2",
"@nomicfoundation/hardhat-chai-matchers": "1.0.4",
"@nomicfoundation/hardhat-network-helpers": "1.0.6",
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/hardhat-ethers": "2.2.1",
"@nomiclabs/hardhat-etherscan": "3.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@typechain/ethers-v5": "6.0.5",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"axios": "^1.3.3",
"chai": "4.3.7",
"dotenv": "^16.0.3",
"eslint": "8.27.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unused-imports": "^2.0.0",
"hardhat": "2.12.2",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.11.20",
"hardhat-gas-reporter": "1.0.9",
"hardhat-jest-plugin": "^0.0.6",
"hardhat-tracer": "^1.2.1",
"hardhat-typechain": "^0.3.5",
"jest": "^29.3.1",
"jest-junit": "^15.0.0",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "1.0.0-rc.1",
"solc": "0.8.17",
"solhint": "3.3.7",
"solidity-coverage": "0.8.2",
"solidity-docgen": "0.6.0-beta.30",
"ts-jest": "^29.0.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"typechain": "4.0.3",
"typescript": "4.9"
},
"packageManager": "yarn@1.22.19"
}