forked from lookfirst/mui-rff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.16 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
{
"name": "mui-rff",
"version": "2.5.2",
"license": "MIT",
"description": "Set of modern wrapper components to facilitate using Material UI with React Final Form",
"repository": {
"url": "https://github.com/lookfirst/mui-rff.git",
"type": "git"
},
"homepage": "https://lookfirst.github.io/mui-rff",
"keywords": [
"react",
"material-ui",
"final-form",
"react-final-form",
"yup"
],
"author": "Jon Stevens",
"main": "dist/index.js",
"module": "dist/mui-rff.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"testw": "tsdx test --watch",
"lint": "tsdx lint src test --ignore-pattern node_modules",
"lint-fix": "yarn lint --fix",
"ui": "yarn upgradeInteractive; cd example; yarn ui; yarn upgrade",
"predeploy": "cd example; yarn; yarn build",
"deploy": "gh-pages -d example/dist",
"prepublish": "yarn build",
"postpublish": "yarn deploy"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"sideEffects": false,
"peerDependencies": {
"@material-ui/core": "^4.11.0",
"final-form": ">=4.19.1 < 5",
"react": ">=16",
"react-final-form": "^6.5.1"
},
"optionalDependencies": {
"@date-io/core": "^1.3.13",
"@date-io/date-fns": "^1.3.13",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"date-fns": "*"
},
"devDependencies": {
"@material-ui/core": "*",
"@sheerun/mutationobserver-shim": "*",
"@testing-library/react": "*",
"@types/react": "*",
"@types/react-dom": "*",
"@types/yup": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint-config-prettier": "*",
"eslint-plugin-autofix": "*",
"eslint-plugin-prettier": "*",
"eslint-plugin-react": "*",
"eslint-plugin-react-hooks": "*",
"final-form": "*",
"gh-pages": "*",
"husky": "*",
"react": "*",
"react-dom": "*",
"react-final-form": "*",
"tsdx": "*",
"tslib": "*",
"typescript": "*",
"yup": "*"
}
}