-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 898 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 898 Bytes
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
{
"name": "loopkit",
"private": true,
"packageManager": "pnpm@10.23.0",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"cli": "pnpm --filter @loopkit/cli dev",
"web": "pnpm --filter @loopkit/web dev",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [
"prettier --write"
],
"packages/shared/src/**/*.{ts,tsx}": [
"bash -c 'pnpm --filter @loopkit/shared type-check'"
],
"packages/cli/src/**/*.{ts,tsx}": [
"bash -c 'pnpm --filter @loopkit/cli type-check'"
],
"packages/web/src/**/*.{ts,tsx}": [
"bash -c 'pnpm --filter @loopkit/web type-check'"
]
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"turbo": "^2.5.0",
"typescript": "^5.8.0"
}
}