generated from chiffre-io/template-library
-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
87 lines (87 loc) · 1.9 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
81
82
83
84
85
86
87
{
"name": "nuqs-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": {
"name": "François Best",
"email": "[email protected]",
"url": "https://francoisbest.com"
},
"repository": {
"type": "git",
"url": "https://github.com/47ng/nuqs"
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"prepare": "husky",
"lint": "pnpm run -w --parallel --stream '/^lint:/'",
"lint:prettier": "prettier --check ./packages/nuqs/src/**/*.ts",
"lint:sherif": "sherif"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.5.0",
"commitlint": "^19.5.0",
"husky": "^9.1.6",
"prettier": "3.3.3",
"semantic-release": "^24.2.0",
"sherif": "^1.0.1",
"turbo": "^2.2.3",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]+sha512.beb9e2a803db336c10c9af682b58ad7181ca0fbd0d4119f2b33d5f2582e96d6c0d93c85b23869295b765170fbdaa92890c0da6ada457415039769edf3c959efe",
"resolutions": {
"@headlessui/react": "2.2.0"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "pnpm run lint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"clean",
"doc",
"feat",
"fix",
"perf",
"ref",
"revert",
"style",
"test"
]
],
"subject-case": [
0,
"always",
"sentence-case"
],
"body-leading-blank": [
2,
"always",
true
]
}
}
}