forked from wojtekmaj/react-date-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.81 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
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-date-picker",
"version": "8.4.0",
"description": "A date picker for your React app.",
"main": "dist/entry.js",
"source": "src/entry.js",
"types": "./index.d.ts",
"scripts": {
"build": "yarn build-js && yarn copy-styles && yarn build-styles && yarn copy-types",
"build-js": "babel src -d dist --ignore \"**/*.spec.js,**/*.spec.jsx\"",
"build-styles": "lessc ./dist/DatePicker.less ./dist/DatePicker.css",
"clean": "rimraf dist",
"copy-styles": "node ./copy-styles.js",
"copy-types": "node ./copy-types.js",
"jest": "jest",
"lint": "eslint sample/ src/ test/ --ext .jsx,.js",
"postinstall": "husky install",
"prepack": "yarn clean && yarn build",
"test": "yarn lint && yarn jest"
},
"keywords": [
"calendar",
"date",
"date-picker",
"month-picker",
"react"
],
"author": {
"name": "Wojciech Maj",
"email": "[email protected]"
},
"contributors": [
{
"name": "Andrzej Kopeć",
"email": "[email protected]"
},
{
"name": "Joe Bourne",
"email": "[email protected]"
},
{
"name": "Juan Caicedo",
"email": "[email protected]"
},
{
"name": "Pier-Luc Gendreau"
},
{
"name": "Kevin Kipp",
"email": "[email protected]"
},
{
"name": "Linus Marco"
},
{
"name": "Marco Fugaro",
"email": "[email protected]"
},
{
"name": "Matt Gandley",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"@types/react-calendar": "^3.0.0",
"@wojtekmaj/date-utils": "^1.0.3",
"get-user-locale": "^1.2.0",
"make-event-props": "^1.1.0",
"merge-class-names": "^1.1.1",
"merge-refs": "^1.0.0",
"prop-types": "^15.6.0",
"react-calendar": "^3.7.0",
"react-fit": "^1.4.0",
"update-input-width": "^1.2.2"
},
"devDependencies": {
"@babel/cli": "^7.15.0",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.0",
"enzyme": "^3.10.0",
"eslint": "^8.5.0",
"eslint-config-wojtekmaj": "^0.6.5",
"husky": "^7.0.0",
"jest": "^27.0.0",
"less": "^4.0.0",
"prettier": "^2.5.0",
"pretty-quick": "^3.1.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rimraf": "^3.0.0"
},
"peerDependencies": {
"react": "^16.3.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.3.0 || ^17.0.0 || ^18.0.0"
},
"resolutions": {
"[email protected]": "^7.0.0"
},
"files": [
"dist",
"src",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/wojtekmaj/react-date-picker.git"
},
"funding": "https://github.com/wojtekmaj/react-date-picker?sponsor=1",
"packageManager": "[email protected]"
}