-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "react-material-ui-form-validator",
"version": "4.0.1",
"description": "Simple validator for forms designed with material-ui v1/v3/v4/v5 components.",
"main": "./lib/index.js",
"scripts": {
"build": "babel ./src -d ./lib --presets=es2015,react,stage-2",
"prepublish": "npm run build",
"lint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewOldMax/react-material-ui-form-validator.git"
},
"keywords": [
"material-ui",
"form",
"validation"
],
"author": "NewOldMax",
"license": "MIT",
"bugs": {
"url": "https://github.com/NewOldMax/react-material-ui-form-validator/issues"
},
"homepage": "https://github.com/NewOldMax/react-material-ui-form-validator#readme",
"dependencies": {
"react-form-validator-core": "2.0.1",
"prop-types": "^15.0.0"
},
"peerDependencies": {
"@mui/material": "^6.0.0",
"react": "^17.0.2 || ^18.0.0",
"react-dom": "^17.0.2 || ^18.0.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.5.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-2": "6.16.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "^6.8.0"
}
}