-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.24 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
{
"name": "mui-popover-date-range-picker",
"version": "1.0.1",
"description": "A library for creating DateRange picker for MUI components in React projects",
"keywords": [
"react",
"date",
"datepicker",
"daterangepicker",
"mui"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "rimraf dist && rollup --config rollup.config.mjs --environment NODE_ENV:production",
"start": "rimraf dist && rollup --config rollup.config.mjs -w --environment NODE_ENV:development",
"prepublishOnly": "npm run build",
"start-storybook": "vite --port 3193",
"preview-storybook": "vite preview",
"build-storybook": "vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahmetemrekilinc/mui-popover-date-range-picker.git"
},
"homepage": "https://ahmetemrekilinc.github.io/mui-popover-date-range-picker",
"license": "MIT",
"author": "ahmetemrekilinc",
"peerDependencies": {
"@mui/icons-material": ">=6.0.0",
"@mui/material": ">=6.0.0",
"@mui/x-date-pickers": "^7.15.0",
"date-fns": ">=2.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@babel/core": "7.19.0",
"@babel/eslint-parser": "7.18.9",
"@babel/helper-module-transforms": "7.25.2",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-function-bind": "7.18.9",
"@babel/plugin-syntax-import-assertions": "7.22.5",
"@babel/plugin-transform-react-jsx": "7.19.0",
"@babel/preset-env": "7.19.0",
"@babel/preset-react": "7.18.6",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.0.1",
"@mui/material": "^6.0.1",
"@mui/system": "^6.1.0",
"@mui/x-date-pickers": "^7.15.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.7",
"@vitejs/plugin-react": "4.3.1",
"date-fns": "^2.30.0",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jsx-to-string": "1.4.0",
"prettier": "3.3.3",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "4.21.2",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-visualizer": "5.12.0",
"vite": "^4.4.5"
},
"files": [
"dist"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "yarn@4.1.0"
}