-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.51 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
88
89
90
91
92
93
94
{
"name": "@programmer_network/use-ajv-form",
"version": "1.0.30",
"description": "Custom React Hook that integrates with Ajv JSON Schema Validator",
"main": "dist/use-ajv-form.es.js",
"author": "Aleksandar Grbic",
"publishConfig": {
"access": "public"
},
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"prepare": "husky install",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"lint:ci": "eslint --cache .",
"lint:fix": "eslint --cache --fix src",
"lint:quiet": "eslint --cache --quiet src",
"test:ci": "vitest",
"types:check": "tsc"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*": "prettier --write"
},
"vitest": {
"test": {
"include": "/**/*.test.jsx|js|tsx"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/agjs/use-ajv-form.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/agjs/use-ajv-form/issues"
},
"homepage": "https://github.com/agjs/use-ajv-form#readme",
"peerDependencies": {
"ajv": ">= 8.13.0",
"ajv-errors": ">= 3.0.0",
"ajv-formats": ">= 2.1.1",
"react": ">=18.2.0 <20.0.0",
"react-dom": ">=18.2.0 <20.0.0"
},
"devDependencies": {
"@programmer_network/ajv": "1.0.2",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.1.2",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/ajv": "1.0.0",
"@types/jest": "29.5.10",
"@types/node": "20.10.0",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@vitejs/plugin-react": "4.2.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.4",
"eslint-plugin-simple-import-sort": "10.0.0",
"husky": "8.0.3",
"jsdom": "22.1.0",
"prettier": "3.0.3",
"react": "18",
"react-dom": "18",
"typescript": "5.2.2",
"vite": "5.1.8",
"vite-plugin-dts": "3.6.3",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.6"
},
"files": [
"dist"
],
"keywords": [
"react",
"react hooks",
"ajv",
"form validation",
"json schema validation",
"use-ajv-form",
"react form validation"
]
}