-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.93 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.93 KB
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
108
109
110
111
112
113
114
{
"name": "leather-mono",
"author": "Leather Wallet",
"description": "Leather wallet shared code",
"version": "2.7.2",
"license": "MIT",
"type": "module",
"scripts": {
"build": "turbo run build",
"build:extension": "BUILD_TARGET=extension turbo run build --filter=@leather.io/extension",
"build:mobile": "BUILD_TARGET=mobile turbo run build --filter=@leather.io/mobile",
"build:packages": "turbo run build --filter=\"./packages/*\"",
"build:watch": "turbo run build:watch",
"build:web": "BUILD_TARGET=web turbo run build --filter=@leather.io/web",
"check:all": "turbo run check:all",
"clean": "git clean -dfX",
"dev": "turbo run build:watch",
"format": "turbo run format",
"format:check": "turbo run format:check",
"install:clean": "rm -rf \"**/node_modules\" && pnpm -r clean",
"install:fresh": "pnpm install:clean && pnpm i",
"install:nuke": "rm -rf pnpm-lock.yaml && pnpm install:fresh",
"knip": "knip",
"lint": "turbo run lint",
"lint:deps": "pnpm dependency-cruiser .",
"lint:filenames": "pnpm ls-lint",
"lint:fix": "turbo run lint:fix",
"lt": "pnpm --filter @leather.io/tools lt",
"prepare": "husky",
"syncpack:fix": "syncpack fix-mismatches",
"syncpack:format": "syncpack format",
"syncpack:lint": "syncpack lint",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:e2e": "playwright test",
"test:unit": "turbo run test:unit",
"typecheck": "turbo run typecheck",
"typecheck:tsc": "tsc --noEmit"
},
"devDependencies": {
"@babel/runtime": "7.26.0",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@leather.io/eslint-config": "workspace:*",
"@leather.io/prettier-config": "workspace:*",
"@leather.io/tsconfig-config": "workspace:*",
"@ls-lint/ls-lint": "2.2.3",
"@playwright/test": "1.58.2",
"@tanstack/eslint-plugin-query": "5.62.1",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@trivago/prettier-plugin-sort-imports": "5.2.2",
"@types/jest": "29.5.14",
"@types/node": "24.0.8",
"@vitest/coverage-v8": "2.1.9",
"audit-ci": "6.6.1",
"chalk": "5.3.0",
"dependency-cruiser": "16.10.0",
"dotenv": "16.4.5",
"eslint": "9.34.0",
"eslint-plugin-lingui": "0.10.1",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "3.5.1",
"syncpack": "13.0.0",
"turbo": "2.5.8",
"typescript": "5.9.3",
"typescript-eslint": "8.47.0",
"vitest": "2.1.9"
},
"engines": {
"node": ">=22.15.0",
"pnpm": ">=10.10.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"keywords": [],
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a",
"pnpm": {
"overrides": {
"levelup>semver": "5.7.2",
"glob": "11.1.0",
"qs": "6.14.1",
"@isaacs/brace-expansion": "5.0.1",
"tar": ">=7.5.11",
"sha.js@<=2.4.11": ">=2.4.12",
"form-data@<2.5.4": ">=2.5.4",
"rollup@<4.59.0": ">=4.59.0",
"minimatch@3": "3.1.4",
"minimatch@5": "5.1.8",
"minimatch@9": "9.0.7",
"minimatch@10": "10.2.3",
"svgo@>=3.0.0": ">=3.3.3",
"serialize-javascript": "7.0.3",
"@expo/cli>undici": ">=7.24.0",
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
"seroval@<=1.4.0": ">=1.4.1",
"seroval@<1.4.1": ">=1.4.1",
"undici@>=7.0.0 <7.24.0": ">=7.24.0",
"undici@<6.24.0": ">=6.24.0",
"@ledgerhq/hw-transport": "6.32.0",
"@ledgerhq/logs": "6.14.0"
},
"patchedDependencies": {
"pofile@1.1.4": "patches/pofile@1.1.4.patch",
"expo-secure-store@15.0.8": "patches/expo-secure-store@15.0.8.patch",
"react-native-webview@13.15.0": "patches/react-native-webview@13.15.0.patch"
},
"onlyBuiltDependencies": [
"better-sqlite3",
"sqlite3"
]
}
}