forked from chainflip-io/chainflip-sdk-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.04 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
{
"name": "@chainflip-io/chainflip-sdk-monorepo",
"version": "0.0.16",
"description": "",
"scripts": {
"build:shared": "pnpm --filter sdk-shared build",
"build:sdk": "pnpm build:shared && pnpm --filter sdk build",
"build:swap": "pnpm build:shared && pnpm --filter swap build",
"build:cli": "pnpm --filter cli build",
"test:ci:shared": "pnpm --filter sdk-shared test:ci",
"test:ci:sdk": "pnpm --filter sdk test:ci",
"test:ci:swap": "pnpm --filter swap test:ci",
"test:ci:cli": "exit 0",
"prettier:check": "prettier ./** --check",
"prettier:write": "prettier ./** --write",
"eslint:check": "pnpm -r lint",
"eslint:fix": "eslint . --fix --ignore-path .gitignore",
"syncpack:list": "pnpm syncpack list-mismatches",
"syncpack:fix": "pnpm syncpack fix-mismatches",
"typecheck": "pnpm -r typecheck",
"postinstall": "pnpm syncpack:list",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.20.0",
"envlocker": "^0.2.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.5",
"syncpack": "^12.3.0",
"ts-morph": "^21.0.1",
"tsc-alias": "^1.8.8",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"yargs": "^17.7.2"
},
"engines": {
"node": "20.11.0",
"pnpm": ">=7"
},
"dependencies": {
"@trpc/client": "^10.45.1",
"@trpc/server": "^10.45.1",
"bech32-buffer": "^0.2.1",
"superjson": "^1.13.3",
"zod": "^3.22.4"
},
"pnpm": {
"patchedDependencies": {
"bech32-buffer@0.2.1": "patches/bech32-buffer@0.2.1.patch"
}
}
}