-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.85 KB
/
package.json
File metadata and controls
78 lines (78 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
76
77
78
{
"name": "fusion-resolver-example",
"version": "0.0.1",
"description": "Fusion Order Example",
"repository": {
"type": "git",
"url": "git@github.com:1inch/fusion-resolver-example.git"
},
"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"
},
"dependencies": {
"@1inch/fusion-sdk": "2",
"@1inch/limit-order-protocol-contract": "4.3.2",
"@1inch/permit-signed-approvals-utils": "^1.5.2",
"@1inch/solidity-utils": "6.6.0",
"@metamask/eth-sig-util": "^4.0.1",
"@openzeppelin/contracts": "5.4.0"
},
"devDependencies": {
"@ethersproject/abi": "5.4.0",
"@ethersproject/contracts": "5.8.0",
"@ethersproject/providers": "5.8.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/jest": "29.5.12",
"@types/mocha": "^8.2.0",
"@types/node": "18.14.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "~9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-unused-imports": "^4.1.4",
"ethers": "6.15.0",
"hardhat": "^2.25.0",
"jest": "29.7.0",
"jest-junit": "^15.0.0",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "1.0.0-rc.1",
"ts-jest": "^29.4.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.11.0",
"typechain": "^8.3.2",
"typescript": "^4.9.5"
},
"resolutions": {
"@1inch/solidity-utils": "6.6.0",
"axios": "^0.30.0",
"elliptic": "^6.6.1",
"ws": "^8.18.1",
"@openzeppelin/contracts": "5.4.0",
"cookie": "0.7.0"
}
}