-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 2.26 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
61
62
63
64
65
66
67
{
"name": "fenix",
"version": "0.1.0",
"description": "",
"main": "hardhat.config.ts",
"private": "true",
"scripts": {
"compile": "hardhat clean && npx hardhat compile",
"test": "npx hardhat test --parallel",
"test:coverage": "npx hardhat coverage",
"clean": "hardhat clean",
"lint": "npm run lint:ts && npm run lint:prettier && npm run lint:solhint",
"lint:fix": "npm run lint:prettier:fix",
"lint:prettier": "prettier --loglevel warn --ignore-path .gitignore . --check",
"lint:prettier:fix": "prettier --log-level warn --ignore-path .gitignore . --write",
"lint:solhint": "solhint contracts/**/*.sol",
"lint:ts": "eslint *.ts test/*.ts",
"lint:ts:fix": "eslint *.ts test/*.ts --fix",
"slither": "npm run clean && slither ."
},
"files": [
"/contracts/**/*.sol",
"!/contracts/mocks/**/*"
],
"keywords": [
"Solidity",
"SmartContracts",
"DEX",
"Centralized liquidity"
],
"author": "Fenix",
"license": "MIT",
"devDependencies": {
"@openzeppelin/contracts": "4.9.5",
"@openzeppelin/contracts-upgradeable": "^4.9.5"
},
"dependencies": {
"@cryptoalgebra/integral-core": "file:./lib/fenix-dex-v3/src/core",
"@cryptoalgebra/integral-periphery": "file:./lib/fenix-dex-v3/src/periphery",
"@cryptoalgebra/integral-plugin": "file:./lib/fenix-dex-v3/src/plugin",
"@ethersproject/bignumber": "^5.7.0",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/hardhat-upgrades": "^3.4.0",
"@openzeppelin/merkle-tree": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.5",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"hardhat": "^2.22.12",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-ignore-warnings": "^0.2.11",
"hardhat-tracer": "^3.0.3",
"minimatch": "^10.0.1",
"prettier": "^2.8.1",
"prettier-check": "^2.0.0",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^5.0.3",
"solidity-coverage": "^0.8.13"
}
}