-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.29 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.29 KB
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
{
"name": "xusd-contract",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "npx hardhat compile --quiet",
"clean": "forge clean; npx hardhat clean; rm -rf coverage.json artifacts/ artifacts-zk/ build/ cache/ cache-zk/ coverage/ example/ node_modules/ types/",
"coverage": "npx hardhat coverage",
"deploy": "npx hardhat run scripts/console.ts",
"lint": "npx prettier --config ./.prettierrc.json --check . && npx eslint --no-error-on-unmatched-pattern \"**/*.{ts,tsx}\"",
"pretty": "npx prettier --config ./.prettierrc.json --write . && npx eslint --no-error-on-unmatched-pattern --fix .",
"size": "npx hardhat size-contracts",
"test": "npx hardhat test ./test/VibeRegistry.test.ts --network hardhat",
"typechain": "npx hardhat typechain",
"update": "forge update && npm upgrade",
"ut": "forge test",
"testOracle": "npx hardhat test ./test/UniswapV2LikeOracle.js --network local",
"localChain": "npx hardhat node --fork https://rpc.pulsechain.com"
},
"dependencies": {
"@1inch/solidity-utils": "^6.3.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^5.1.0",
"@openzeppelin/contracts-upgradeable": "5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.2.1",
"@pancakeswap/v3-core": "^1.0.2",
"bignumber.js": "^9.1.2",
"ethers": "^6.13.5",
"evm-proxy-detection": "^2.0.3",
"nyc": "^17.1.0"
},
"devDependencies": {
"@clrfund/waffle-mock-contract": "^0.0.11",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.8",
"@types/node": "^22.5.5",
"chai": "^4.5.0",
"dotenv": "^16.4.5",
"forge-std": "^1.1.2",
"hardhat": "^2.22.18",
"hardhat-gas-reporter": "^2.2.2",
"mocha": "^11.0.1",
"solidity-coverage": "^0.8.13",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.6.2"
}
}