-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
51 lines (51 loc) · 1.61 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": "stargatefinance",
"private": true,
"scripts": {
"build": "$npm_execpath turbo build",
"clean": "$npm_execpath turbo clean",
"postinstall": "$npm_execpath husky install",
"lint": "$npm_execpath turbo lint",
"release:publish": "$npm_execpath changeset publish",
"release:version": "$npm_execpath changeset version && $npm_execpath install --lockfile-only --prefer-offline --ignore-scripts",
"test": "$npm_execpath turbo test"
},
"lint-staged": {
"**/*.sol": [
"prettier --ignore-unknown --write"
],
"**/*.{js,ts,tsx,json}": [
"pnpm prettier --write --ignore-unknown",
"pnpm eslint --fix"
]
},
"resolutions": {
"@layerzerolabs/lz-definitions": "~3.0.49",
"@layerzerolabs/lz-evm-sdk-v2": "3.0.49",
"@layerzerolabs/lz-v2-utilities": "~3.0.49",
"es5-ext": "https://github.com/LayerZero-Labs/es5-ext"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@layerzerolabs/eslint-config-next": "~3.0.7",
"@layerzerolabs/prettier-config-next": "~3.0.7",
"@layerzerolabs/solhint-config": "~3.0.7",
"@rushstack/eslint-patch": "^1.5.1",
"eslint-plugin-jest-extended": "2.0.0",
"husky": "^8.0.3",
"js-toml": "^1.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"turbo": "1.11.0"
},
"packageManager": "pnpm@8.14.0",
"engines": {
"node": ">=18.12.0"
},
"pnpm": {
"patchedDependencies": {
"@matterlabs/hardhat-zksync-deploy@0.9.0": "patches/@matterlabs__hardhat-zksync-deploy@0.9.0.patch",
"hardhat-contract-sizer@2.10.0": "patches/hardhat-contract-sizer@2.10.0.patch"
}
}
}