forked from hypeserver/react-date-range
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.53 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
{
"name": "react-dual-date-range",
"version": "0.0.9",
"description": "A React component for choosing dates and date ranges. Based on react-date-range",
"main": "lib/index.js",
"scripts": {
"start-dev": "babel ./src --watch --out-dir ./lib & cd demo && npm install && npm run start-dev",
"prebuild": "rm -rf lib/*",
"build": "babel ./src --out-dir ./lib",
"prepublish": "npm run build"
},
"keywords": [
"react",
"date",
"range",
"datepicker",
"rangepicker"
],
"author": "Maarten Terpstra ([email protected])",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/maartenlterpstra/react-date-range"
},
"bugs": {
"url": "http://github.com/maartenlterpstra/react-date-range/issues"
},
"dependencies": {
"classnames": "^2.2.1",
"moment": "^2.10.6",
"prop-types": "^15.5.10",
"react-toggle": "^4.0.1"
},
"peerDependencies": {
"react": ">=0.15.3"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-react-constant-elements": "^6.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.6",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-polyfill": "6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"babel-runtime": "^6.6.1"
}
}