forked from polubis/gon-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.98 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
64
65
66
{
"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}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json,yaml,css,js,jsx}\"",
"ci:verify": "turbo run format:check lint check-types test build",
"ci:e2e": "turbo run test:e2e",
"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.5.3",
"@commitlint/config-conventional": "^20.5.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"npm-check-updates": "^22.1.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"turbo": "^2.9.9"
},
"lint-staged": {
"**/*.{ts,tsx,md,json,yaml,css,js,jsx}": [
"prettier --write",
"git add"
]
},
"packageManager": "pnpm@10.33.3",
"engines": {
"node": "24.11.0"
}
}