forked from Cork-Technology/Depeg-swap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.8 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
{
"name": "Depeg-Swap-V1",
"version": "1.0.0",
"main": "index.js",
"author": "ziankork <[email protected]>",
"license": "MIT",
"scripts": {
"test": "npx hardhat test",
"test:all": "npx hardhat clean && forge clean && forge test -vvv && npx hardhat test",
"build": "npx hardhat compile",
"compile:organise":"npx hardhat clean && npx hardhat compile && node script/node-scripts/organiseArtifacts.js",
"lint:contract": "npx solhint 'contracts/**/*.sol'",
"lint:contract:fix": "npx solhint 'contracts/**/*.sol' --fix"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ignition": "^0.15.0",
"@nomicfoundation/hardhat-ignition-viem": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomicfoundation/hardhat-viem": "^2.0.2",
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.6",
"@types/mocha": ">=9.1.0",
"@types/node": ">=18.0.0",
"chai": "^4.2.0",
"ethereum-waffle": "^4.0.10",
"hardhat": "^2.22.3",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.2",
"hardhat-gas-reporter": "^2.1.1",
"solidity-coverage": "^0.8.0",
"ts-node": ">=8.0.0",
"typescript": "~5.0.4",
"viem": "^2.13.7"
},
"dependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.1.0",
"@uniswap/lib": "4.0.1-alpha",
"@uniswap/v2-core": "1.0.0",
"dotenv": "^16.4.5",
"ethers": "5.6.2",
"hardhat-contract-sizer": "^2.10.0",
"solhint": "^5.0.2"
}
}