-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "kitchen-sink",
"private": true,
"packageManager": "npm@10.9.0",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=18"
},
"scripts": {
"lint-staged": "lint-staged",
"prepare": "husky",
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"test": "turbo run test",
"lint:types": "turbo run lint:types --",
"lint:check": "turbo run lint:check --",
"lint:fix": "turbo run lint:fix --",
"format:check": "prettier --check \"**/*.{ts,tsx,js,css,yaml}\"",
"format:write": "prettier --write \"**/*.{ts,tsx,js,css,yaml}\""
},
"lint-staged": {
"apps/api/**/*.{js,jsx,ts,tsx}": [
"npm run lint:fix -w @repo/api"
],
"apps/api/**/*.{ts,tsx}": [
"sh -c 'npm run lint:types -w @repo/api'"
],
"apps/web/**/*.{js,jsx,ts,tsx}": [
"npm run lint:fix -w @repo/web"
],
"apps/web/**/*.{ts,tsx}": [
"sh -c 'npm run lint:types -w @repo/web'"
],
"packages/database/**/*.{js,jsx,ts,tsx}": [
"npm run lint:fix -w @repo/database"
],
"packages/database/**/*.{ts,tsx}": [
"sh -c 'npm run lint:types -w @repo/database'"
],
"packages/ui/**/*.{js,jsx,ts,tsx}": [
"npm run lint:fix -w @repo/ui"
],
"packages/ui/**/*.{ts,tsx}": [
"sh -c 'npm run lint:types -w @repo/ui'"
],
"*.{js,jsx,ts,tsx,md,html,css}": [
"npm run format:write"
]
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.0",
"turbo": "^2.4.2"
}
}