-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.46 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@concero/contracts-v2",
"version": "1.0.0",
"license": "UNLICENSED",
"bugs": "[email protected]",
"homepage": "https://concero.io",
"description": "Concero V2 Contracts. If you discover any security vulnerabilities, report them responsibly to [email protected]. Thank you!",
"scripts": {
"chain": "hardhat node --network hardhat --no-deploy",
"fork": "MAINNET_FORKING_ENABLED=true hardhat node --network hardhat --no-deploy",
"compile": "hardhat compile",
"test": "REPORT_GAS=true hardhat test --network hardhat",
"lint:ts": "eslint --config .eslint.config.mjs",
"lint:sol": "solhint --config .solhint.json ./contracts/*.sol ./contracts/**/*.sol",
"format:ts": "prettier --write ./**/*.ts",
"format:sol": "prettier --write ./contracts/**/*.sol",
"clean:hardhat": "rm -rf ./artifacts ./cache ./coverage ./typechain-types ./deployments",
"clean:forge": "forge clean",
"clean": "npm run clean:hardhat && npm run clean:forge"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-verify": "^2.0.5",
"@typechain/hardhat": "^9.1.0",
"@types/prettier": "^2.7.3",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"chai": "^4.3.6",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"ethers-v5": "npm:[email protected]",
"hardhat": "^2.22.2",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.2",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.10",
"ora": "^8.0.1",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.3.1",
"qrcode": "^1.5.1",
"solhint": "^5.0.3",
"solhint-community": "^4.0.0",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.12",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@chainlink/contracts": "^1.2.0",
"@chainlink/contracts-ccip": "^1.4.0",
"@chainlink/env-enc": "^1.0.5",
"@chainlink/functions-toolkit": "^0.3.0",
"@chainlink/hardhat-chainlink": "^0.0.4",
"@chainlink/local": "^0.2.2",
"@chainlink/solhint-plugin-chainlink-solidity": "^1.0.1",
"@nomicfoundation/hardhat-viem": "^2.0.3",
"@openzeppelin/contracts": "5.0.2",
"@tenderly/hardhat-tenderly": "^2.5.1",
"@typechain/ethers-v6": "^0.5.1",
"@uniswap/swap-router-contracts": "https://github.com/Uniswap/swap-router-contracts",
"@uniswap/v2-periphery": "https://github.com/Uniswap/v2-periphery",
"@uniswap/v3-periphery": "https://github.com/sushiswap/v3-periphery",
"asciichart": "^1.5.25",
"dotenv": "^16.4.5",
"ds-test": "https://github.com/dapphub/ds-test.git",
"envfile": "^7.1.0",
"ethers": "6.12.1",
"forge-std": "https://github.com/foundry-rs/forge-std.git",
"hardhat-docgen": "^1.3.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.3.1",
"qrcode": "^1.5.1",
"readline": "^1.3.0",
"regenerator-runtime": "^0.14.1",
"solady": "^0.0.273",
"solhint-plugin-chainlink-solidity": "npm:@chainlink/solhint-plugin-chainlink-solidity",
"solhint-plugin-prettier": "^0.1.0",
"solidity-bytes-utils": "0.8.0",
"sushiswap-v3-periphery": "https://github.com/sushiswap/v3-periphery",
"viem": "^2.19.1"
}
}