generated from chiffre-io/template-library
-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathpackage.json
86 lines (86 loc) · 1.79 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
{
"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": "FORCE_COLOR=3 turbo run dev",
"build": "FORCE_COLOR=3 turbo run build",
"test": "FORCE_COLOR=3 turbo run test",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.4.3",
"commitlint": "^18.4.3",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"semantic-release": "^22.0.12",
"turbo": "^1.11.2",
"typescript": "^5.3.3"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"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
]
}
},
"pnpm": {
"overrides": {
"hasown": "npm:@nolyfill/hasown@latest",
"isarray": "npm:@nolyfill/isarray@latest",
"side-channel": "npm:@nolyfill/side-channel@latest",
"string.prototype.padend": "npm:@nolyfill/string.prototype.padend@latest"
}
}
}