-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "karr",
"version": "0.2.3",
"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 --write \"**/*.{ts,tsx,md,json,yml,yaml,css,html}\"",
"test": "turbo test",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"devDependencies": {
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@ianvs/prettier-plugin-sort-imports": "catalog:",
"husky": "catalog:",
"lint-staged": "^15.3.0",
"prettier": "catalog:",
"prettier-plugin-tailwindcss": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=18"
},
"pnpm": {
"requiredScripts": [
"lint",
"format"
]
},
"lint-staged": {
"*.{ts,tsx,md,json,yml,yaml,css,html}": [
"prettier --write"
],
"apps/caddy/Caddyfile": [
"caddy fmt --overwrite"
]
}
}