-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "@ledgerhq/wallet-api",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"examples/*"
],
"scripts": {
"clean": "git clean -fdX",
"changelog": "changeset add",
"build": "turbo run build",
"build:client": "turbo run build --filter=wallet-api-client",
"dev": "turbo run dev --filter=!./examples/*",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"format:check": "turbo run format:check",
"format:fix": "turbo run format:fix",
"prepare": "husky",
"publish-packages": "turbo run build lint && changeset publish"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@ledgerhq/eslint-config-custom": "workspace:*",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"turbo": "^1.12.4"
},
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4",
"dependencies": {
"@tsconfig/recommended": "^1.0.3"
}
}