-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.23 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.23 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
{
"private": true,
"name": "reactjs-use-form-monorepo",
"version": "1.0.0",
"description": "Reactive form management and input field validation hook",
"author": "amir0ff",
"license": "MIT",
"homepage": "https://amir0ff.github.io/reactjs-use-form",
"repository": {
"type": "git",
"url": "https://github.com/amir0ff/reactjs-use-form"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18",
"pnpm": ">=8.0.0"
},
"scripts": {
"test": "pnpm --filter reactjs-use-form test",
"build": "pnpm --filter reactjs-use-form build",
"build:clean": "pnpm clean && pnpm install && pnpm build",
"dev": "pnpm --filter reactjs-use-form dev",
"dev:example": "pnpm --filter reactjs-use-form-example dev",
"build:example": "pnpm --filter reactjs-use-form-example build",
"clean": "rm -rf node_modules && pnpm --filter '*' clean",
"format": "prettier --write \"./**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"./**/*.{ts,js,json,md}\"",
"lint": "pnpm --filter '*' lint",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"prettier": "^3.8.1"
},
"keywords": [
"react",
"typescript",
"react-testing-library",
"react-hooks"
]
}