-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.04 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.04 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@react-form-fields/material-ui",
"description": "Material UI Form Fields",
"private": false,
"keywords": [
"material-ui",
"react",
"react-form",
"form",
"validation",
"material"
],
"version": "2.1.9",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Daniel Prado",
"email": "danielprado.ad@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/react-form-fields/material-ui"
},
"bugs": {
"url": "https://github.com/react-form-fields/material-ui/issues"
},
"scripts": {
"docs:dev": "(cd docs/project && yarn start)",
"docs:build": "sh docs/build.sh",
"prepare": "yarn tsc",
"predev": "(cd docs/project && yarn) && yarn tsc -p ./tsconfig.docs.json",
"dev": "concurrently -r \"yarn docs:dev\" \"yarn tsc -p ./tsconfig.docs.json -w --preserveWatchOutput\" "
},
"husky": {
"hooks": {
"pre-commit": "concurrently -r \"yarn tslint -p tsconfig.json\" \"yarn tsc --noEmit\"",
"post-merge": "yarn"
}
},
"dependencies": {
"@date-io/date-fns": "^1.3.11",
"@material-ui/pickers": "^3.2.8",
"@react-form-fields/core": "^1.5.4",
"@types/classnames": "^2.2.8",
"@types/jquery": "^3.3.30",
"@types/react-autosuggest": "9.3.9",
"@types/react-color": "3.0.1",
"@types/react-select": "^2.0.19",
"@types/validatorjs": "3.15.0",
"classnames": "^2.2.6",
"date-fns": "2.8.1",
"jquery": ">=3.4",
"react-color": ">=2.17.3",
"react-select": "^3.0.4",
"trumbowyg": "^2.18.0",
"tslib": ">=1.10.0",
"validatorjs": ">=3.15.1"
},
"peerDependencies": {
"@material-ui/core": ">=4.1.2",
"@material-ui/icons": ">=4.2.1",
"react": ">=16.8.6"
},
"devDependencies": {
"@material-ui/core": ">=4.1.2",
"@material-ui/icons": ">=4.2.1",
"concurrently": "4.1.0",
"husky": "2.5.0",
"react": ">=16.8.4",
"tslint": "5.18.0",
"tslint-eslint-rules": "5.4.0",
"tslint-react": "4.0.0",
"typescript": "3.5.2"
}
}