-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.6 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
{
"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": "jest --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": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@types/jest": "^29.5.5",
"@types/react": "^18.0.0",
"@types/react-test-renderer": "^18.0.0",
"@types/validator": "^13.7.2",
"@typescript-eslint/parser": "^6.7.5",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"eslint": "^8.14.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.22.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-jsdom-global": "^4.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"class-validator": "^0.14.0"
}
}