-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
107 lines (107 loc) · 3.38 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@kreskolabs/protocol",
"private": true,
"description": "Kresko Protocol Smart Contracts",
"version": "1.0.0",
"license": "BUSL-1.1",
"author": {
"name": "Kresko Labs",
"url": "https://kresko.fi"
},
"types": "./types/globals.d.ts",
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"clean": "bunx hardhat clean && forge clean",
"f:dry": "bunx just dry-local",
"f:test": "forge test -vvv",
"f:compile": "forge build",
"f:dev:kill": "bunx just kill",
"f:dev": "bunx just local",
"hh:dev": "bunx hardhat node --tags local --watch",
"hh:compile": "bunx hardhat compile",
"hh:recompile": "bunx hardhat clean && bunx hardhat compile",
"hh:dry": "bunx hardhat deploy",
"hh:test": "HH_TEST=true bunx hardhat test --deploy-fixture",
"test": "forge test && bun hh:test",
"test:ci": "CI=true bun hh:test",
"lint": "bun lint:sol && bun lint:ts",
"lint:ts": "bunx biome check .",
"lint:sol": "bunx solhint --config .solhint.json --max-warnings 0 './src/contracts/**/*.sol' && bunx prettier src/contracts/**/**/*.sol --check",
"format": "bun format:ts && bun format:sol",
"format:ts": "bunx biome format . --write",
"format:sol": "bunx prettier src/contracts/**/**/*.sol --write",
"d:add-facet": "bunx hardhat facet:add",
"d:replace-facet": "bunx hardhat facet:replace",
"d:remove-facet": "bunx hardhat facet:remove",
"postinstall": "bunx patch-package && bunx husky install"
},
"devDependencies": {
"@biomejs/biome": "^1.3.1",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@defi-wonderland/smock": "2.3.5",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-provider": "^5",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@kreskolabs/viem-redstone-connector": "0.5.3",
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomicfoundation/hardhat-foundry": "1.0.3",
"@nomicfoundation/hardhat-network-helpers": "1.0.6",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@redstone-finance/evm-connector": "^0.0.22",
"@swc/core": "1.3.107",
"@swc/helpers": "0.5.3",
"@typechain/ethers-v5": "10.2.0",
"@typechain/hardhat": "9.0.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.2",
"chai": "^4.3.10",
"dotenv": "^16.3.1",
"ethers": "5.7.2",
"glob": "^10.3.10",
"hardhat": "2.17.1",
"hardhat-deploy": "0.11.29",
"hardhat-deploy-ethers": "0.4.0-next.1",
"hardhat-diamond-abi": "3.0.1",
"husky": "^6.0.0",
"just-install": "^1.0.11",
"lint-staged": "^11.2.6",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"mochawesome-report-generator": "^6.2.0",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.1.3",
"redstone-protocol": "1.0.5",
"solhint": "3.6.2",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"typechain": "^8.1.1",
"typescript": "5.2.2",
"viem": "^2.5.0"
},
"keywords": [
"blockchain",
"ethereum",
"hardhat",
"foundry",
"smart-contracts",
"solidity"
],
"trustedDependencies": [
"hardhat",
"just-install"
],
"overrides": {
"fs-extra": "7.0.1",
"undici": "5.14.0"
},
"pnpm": {
"patchedDependencies": {
"@defi-wonderland/[email protected]": "patches/@[email protected]"
}
}
}