forked from hypeserver/react-date-range
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.69 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
{
"name": "react-date-range",
"version": "1.4.0",
"description": "A React component for choosing dates and date ranges.",
"main": "dist/index.js",
"scripts": {
"start": "yarn build:css & styleguidist server",
"build": "yarn build:css & yarn build:js & styleguidist build",
"build:css": "postcss 'src/styles.scss' -d dist --ext css & postcss 'src/theme/*.scss' -d 'dist/theme' --ext css",
"build:js": "babel ./src --out-dir ./dist --ignore test.js",
"lint": "eslint 'src/**/*.js'",
"test": "jest",
"preversion": "yarn clear & yarn build"
},
"keywords": [
"react",
"date",
"range",
"datepicker",
"rangepicker"
],
"contributors": [
"Burak Can <[email protected]> (https://github.com/burakcan)",
"Mehmet Kamil Morcay <[email protected]> (https://github.com/mkg0)",
"Kamyar Ghasemlou <[email protected]> (https://github.com/kamyar)",
"Engin Semih Basmacı <[email protected]> (https://github.com/mortargrind)",
"Onur Kerimov <[email protected]> (https://github.com/onurkerimov)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/hypeserver/react-date-range"
},
"bugs": {
"url": "http://github.com/hypeserver/react-date-range/issues"
},
"browserslist": [
"defaults"
],
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react-list": "^0.8.13",
"shallow-equal": "^1.2.1"
},
"peerDependencies": {
"date-fns": "2.0.0-alpha.7 || >=2.0.0",
"react": "^0.14 || ^15.0.0-rc || >=15.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.7.4",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-date-fns": "^2.0.0",
"css-loader": "^3.2.0",
"date-fns": "^2.8.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"jest": "^24.9.0",
"normalize.css": "^8.0.1",
"postcss": "^8.2.13",
"postcss-cli": "^6.1.3",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-styleguidist": "^10.4.0",
"style-loader": "^1.0.0",
"url-loader": "^3.0.0",
"webpack": "^4.41.5"
}
}