-
Notifications
You must be signed in to change notification settings - Fork 212
/
package.json
35 lines (35 loc) · 1.11 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
{
"name": "@pythnetwork/pyth-crosschain",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "^20.18.0",
"pnpm": "^9.12.3"
},
"scripts": {
"build:ci": "turbo build --filter=!./apps/api-reference --filter=!./apps/insights --filter=!./apps/staking",
"example:hermes-client": "pnpm i && turbo example --filter @pythnetwork/hermes-client --ui stream",
"fix": "pnpm i && turbo fix",
"publish": "lerna publish from-package --no-private --no-git-tag-version --yes",
"start:dev": "pnpm i && turbo start:dev",
"start:prod": "pnpm i && turbo start:prod",
"test": "pnpm i && turbo test",
"test:ci": "turbo test"
},
"devDependencies": {
"lerna": "^8.1.8",
"prettier": "2.7.1",
"turbo": "^2.2.3"
},
"pnpm": {
"overrides": {
"@injectivelabs/[email protected]>@injectivelabs/token-metadata": "1.10.42",
"eslint-config-next>@typescript-eslint/parser": "^7.0.0",
"@solana/web3.js@^1.93.0": "1.92.3",
"eslint-config-turbo": "^2.2.3"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}