-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "react-multi-page-form",
"version": "0.2.1",
"description": "Tools to handle multi-page forms",
"main": "dist/index.js",
"files": ["dist"],
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"devcontainer": "devcontainer exec --workspace-folder=. bash",
"format": "biome format --write .",
"lint": "biome lint ./src",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"keywords": ["forms", "multi-page"],
"author": "Stu Kabakoff",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@tsconfig/recommended": "^1.0.7",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.9",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react-hook-form": "^7.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"peerDependencies": {
"react-hook-form": "^7.0.0"
},
"peerDependenciesMeta": {
"react-hook-form": {
"optional": true
}
},
"dependencies": {
"use-callback-stable": "^1.0.2"
}
}