forked from Pyr33x/rehooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 971 Bytes
/
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
{
"name": "rehooks",
"private": true,
"description": "A CLI to scaffold your react custom hooks, with a focus on performance, reusability, and type-safety.",
"scripts": {
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\"",
"check-types": "turbo run check-types",
"prepare": "husky install",
"build": "turbo run build",
"clean": "turbo run clean",
"lint": "turbo run lint",
"dev": "turbo run dev"
},
"keywords": [
"rehooks",
"react",
"typescript",
"hooks",
"monorepo",
"turbo"
],
"author": {
"name": "Mehdi",
"url": "https://github.com/pyr33x",
"email": "[email protected]"
},
"devDependencies": {
"husky": "^9.1.6",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"turbo": "^2.4.0",
"typescript": "5.6.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}