-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.85 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
{
"name": "@1inch/st1inch",
"version": "2.2.0",
"description": "St1inch",
"repository": {
"type": "git",
"url": "[email protected]:1inch/st1inch.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 --parallel",
"test:ci": "hardhat test"
},
"dependencies": {
"@1inch/token-plugins": "1.3.0",
"@1inch/farming": "3.2.0",
"@1inch/solidity-utils": "3.5.5",
"@openzeppelin/contracts": "5.1.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "2.0.2",
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@nomicfoundation/hardhat-network-helpers": "1.0.10",
"@nomicfoundation/hardhat-verify": "2.0.2",
"chai": "4.3.10",
"dotenv": "16.3.1",
"eslint": "8.56.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.5.0",
"eslint-plugin-promise": "6.1.1",
"ethers": "6.9.0",
"hardhat": "2.19.2",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.11.45",
"hardhat-gas-reporter": "1.0.9",
"hardhat-tracer": "2.7.0",
"prettier": "3.1.1",
"prettier-plugin-solidity": "1.2.0",
"solc": "0.8.23",
"solhint": "3.6.2",
"solidity-coverage": "0.8.5",
"solidity-docgen": "0.5.17"
}
}