forked from caravan-bitcoin/caravan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "caravan",
"private": true,
"scripts": {
"build": "turbo build",
"build:coordinator": "turbo build --filter=caravan-coordinator",
"changeset": "changeset",
"ci": "turbo run build lint test",
"dev": "turbo dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"gen": "turbo gen run",
"lint": "turbo lint",
"version": "turbo run build lint test && changeset version && npm install --package-lock-only",
"release": "turbo run build lint test && changeset publish",
"dev:coordinator": "turbo run dev --filter=caravan-coordinator"
},
"devDependencies": {
"@caravan/eslint-config": "*",
"@caravan/typescript-config": "*",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"prettier": "^3.1.1",
"turbo": "^2.0.3"
},
"dependencies": {
"@ledgerhq/hw-transport-webusb": "6.27.12"
},
"engines": {
"node": ">=20"
},
"overrides": {
"material-table": {
"jspdf": "2.5.1"
},
"@ledgerhq/hw-transport-webusb": {
"@ledgerhq/hw-transport": "6.28.1",
"@ledgerhq/devices": "8.0.0"
}
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}