-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
102 lines (102 loc) · 2.83 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "mui-rff",
"version": "7.4.1",
"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": "dts watch",
"build": "dts build",
"test": "jest",
"testw": "dts test --watch",
"lint": "dts 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",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"sideEffects": false,
"peerDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^6.1.0",
"@mui/system": "^6.1.0",
"@mui/x-date-pickers": "^7.17.0",
"final-form": "^4",
"react": ">=18",
"react-final-form": "^6.5.9"
},
"optionalDependencies": {
"@date-io/core": "^2.17.0",
"@date-io/date-fns": "^2.17.0",
"date-fns": "^2.30.0",
"yup": "^1.3.2"
},
"devDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^6.1.0",
"@mui/system": "^6.1.0",
"@mui/x-date-pickers": "^7.17.0",
"@testing-library/react": "^14.1.2",
"@types/node": "^20.9.4",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"dts-cli": "^2.0.3",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"final-form": "^4.20.10",
"gh-pages": "^6.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-summary-reporter": "^0.0.2",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
},
"packageManager": "[email protected]+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}