-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "react-class-validator",
"version": "1.5.0",
"description": "React hook for validation with class-validator",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anigenero/react-class-validator.git"
},
"keywords": [
"class-validator",
"validation",
"form"
],
"author": {
"name": "Robin Schultz",
"email": "robin@anigenero.com",
"url": "https://github.com/anigenero"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/anigenero/react-class-validator/issues"
},
"homepage": "https://github.com/anigenero/react-class-validator#readme",
"peerDependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@swc/core": "^1.15.21",
"@testing-library/react": "^16.0.0",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/strictest": "^2.0.8",
"@types/react": "^19.2.14",
"@types/validator": "^13.15.10",
"@typescript-eslint/parser": "^8.57.2",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^10.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.37.5",
"jsdom": "^26.0.0",
"reflect-metadata": "^0.2.2",
"typescript": "^6.0.2",
"unplugin-swc": "^1.5.9",
"vitest": "^3.0.0"
},
"dependencies": {
"class-validator": "^0.15.1"
}
}