forked from LedgerHQ/wallet-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "wallet-api",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"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",
"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 install",
"publish-packages": "turbo run build lint && changeset publish"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"eslint": "^8.48.0",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"turbo": "^1.10.13"
},
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"packageManager": "[email protected]",
"dependencies": {
"@tsconfig/recommended": "^1.0.2"
}
}