-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.8 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
61
62
63
{
"name": "with-tailwind",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"test:e2e": "turbo run test:e2e",
"test:e2e:ui": "turbo run test:e2e:ui",
"test:e2e:headed": "turbo run test:e2e:headed",
"test:e2e:report": "turbo run test:e2e:report",
"format": "prettier --write \"**/*.{ts,tsx,md,json,yaml,css,js,jsx}\"",
"prepare": "husky",
"check-deps": "ncu --workspaces",
"update-deps:patch": "ncu -u --workspaces --target patch",
"update-deps:minor": "ncu -u --workspaces --target minor",
"update-deps": "ncu -u --workspaces",
"update-deps-i": "ncu -i --workspaces",
"ci:is-working": "pnpm lint && pnpm check-types && pnpm build",
"ci:format": "lint-staged",
"ci:check-updates": "pnpm check-deps",
"db:start": "turbo run db:start",
"db:stop": "turbo run db:stop",
"db:gen-types": "turbo run db:gen-types",
"db:reset": "turbo run db:reset"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
2,
"always",
1000
]
}
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"npm-check-updates": "^19.3.2",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.6.1"
},
"lint-staged": {
"**/*.{ts,tsx,md,json,yaml,css,js,jsx}": [
"prettier --write",
"git add"
]
},
"packageManager": "pnpm@10.29.2",
"engines": {
"node": "24.11.0"
}
}