-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.29 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "karr",
"version": "0.8.2",
"private": true,
"repository": "https://github.com/finxol/karr",
"scripts": {
"build": "turbo build",
"start": "turbo start",
"dev": "turbo dev",
"lint": "turbo lint",
"check-types": "turbo check-types",
"format": "prettier --config .prettierrc.json --write \"**/*.{ts,tsx,md,json,yml,yaml,css,html}\"",
"format:check": "prettier --config .prettierrc.json --check \"**/*.{ts,tsx,md,json,yml,yaml,css,html}\"",
"test": "turbo test",
"prepare": "husky",
"commitlint": "commitlint --edit",
"release": "changelogen --release --push"
},
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"devDependencies": {
"@commitlint/cli": "catalog:tooling",
"@commitlint/config-conventional": "catalog:tooling",
"@ianvs/prettier-plugin-sort-imports": "catalog:tooling",
"@turbo/gen": "catalog:tooling",
"changelogen": "catalog:tooling",
"husky": "catalog:tooling",
"lint-staged": "catalog:tooling",
"prettier": "catalog:tooling",
"prettier-plugin-tailwindcss": "catalog:tooling",
"turbo": "catalog:tooling",
"typescript": "catalog:tooling"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22"
},
"pnpm": {
"requiredScripts": [
"lint",
"format"
]
},
"lint-staged": {
"*.{ts,tsx,md,json,yml,yaml,css,html}": [
"prettier --write"
],
"apps/caddy/Caddyfile": [
"caddy fmt --overwrite"
]
},
"changelog": {
"repo": "finxol/karr",
"types": {
"feat": {
"title": "🚀 Enhancements",
"semver": "minor"
},
"fix": {
"title": "🩹 Fixes",
"semver": "patch"
},
"perf": {
"title": "🔥 Performance",
"semver": "patch"
},
"build": {
"title": "📦 Build",
"semver": "patch"
},
"style": {
"title": "🎨 Styles",
"semver": "patch"
}
}
}
}