-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.42 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
{
"name": "folks-finance-xchain-contracts",
"version": "1.0.0",
"scripts": {
"build:forge": "forge build",
"build:hardhat": "npx hardhat compile",
"build": "npm run build:forge; npm run build:hardhat",
"clean:forge": "forge clean",
"clean:hardhat": "npx hardhat clean",
"clean": "npm run clean:forge; npm run clean:hardhat",
"test": "npx hardhat test",
"format": "prettier --write .",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Folks-Finance/folks-finance-xchain-contracts.git"
},
"bugs": {
"url": "https://github.com/Folks-Finance/folks-finance-xchain-contracts/issues"
},
"homepage": "https://github.com/Folks-Finance/folks-finance-xchain-contracts#readme",
"dependencies": {
"@chainlink/contracts": "^0.8.0",
"@chainlink/contracts-ccip": "^1.4.0",
"@openzeppelin/contracts": "^5.0.2",
"@pythnetwork/pyth-sdk-solidity": "^3.1.0",
"solidity-bytes-utils": "^0.8.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@typechain/ethers-v6": "^0.5.1",
"chai": "^4.4.1",
"ethers": "^6.13.0",
"hardhat": "^2.22.5",
"prettier": "^3.3.1",
"prettier-plugin-solidity": "^1.3.1",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.5"
}
}