-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
50 lines (50 loc) · 1.78 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
{
"name": "clearsync-project",
"scripts": {
"lint": "npx eslint \"./\" && prettier '**/*.{json,sol,md}' -c && solhint 'contracts/**/*.sol'",
"lint:fix": "eslint '**/*.{js,ts}' --fix && prettier '**/*.{json,sol,md}' --write && solhint 'contracts/**/*.sol' --fix",
"test": "hardhat test"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomicfoundation/hardhat-network-helpers": "1.0.8",
"@nomicfoundation/hardhat-toolbox": "2.0.2",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@openzeppelin/contracts": "5.0.1",
"@tsconfig/node18-strictest-esm": "1.0.1",
"@types/lodash.shuffle": "4.2.9",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"chai": "4.3.7",
"dotenv": "16.3.1",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-array-func": "3.1.8",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-no-constructor-bind": "2.0.4",
"eslint-plugin-optimize-regex": "1.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sonarjs": "0.19.0",
"eslint-plugin-unicorn": "47.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"ethers": "5.7.2",
"hardhat": "2.19.4",
"hardhat-dependency-compiler": "^1.1.3",
"lodash.shuffle": "4.2.0",
"npm-check-updates": "16.10.12",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.1.3",
"solhint": "3.4.1",
"solhint-plugin-prettier": "0.0.5",
"solidity-docgen": "0.6.0-beta.35",
"tsx": "3.12.7"
},
"dependencies": {
"@statechannels/exit-format": "0.2.0",
"@syncswap/core-contracts": "github:syncswap/core-contracts",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"mocha": "10.2.0"
}
}