forked from clauderic/react-infinite-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.22 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-infinite-calendar",
"version": "2.4.0",
"description": "Infinite scrolling date-picker built with React, with localization, themes, keyboard support, and more.",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd",
"styles.css"
],
"scripts": {
"build": "npm run clean && nwb build-react-component --no-vendor",
"clean": "nwb clean-module && nwb clean-demo",
"start": "nwb serve-react-demo",
"storybook": "start-storybook -p 9001 -c .storybook",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"lint": "eslint --fix src/**/*.js"
},
"dependencies": {
"classnames": "^2.2.5",
"date-fns": "^1.27.2",
"dom-helpers": "^3.2.1",
"prop-types": "^15.5.7",
"react-tiny-virtual-list": "^2.0.0",
"react-transition-group": "^1.1.3",
"recompose": "^0.26.0"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0-alpha"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"@kadira/storybook-addon-options": "^1.0.1",
"babel-eslint": "^7.0.0",
"babel-plugin-css-modules-transform": "^1.2.1",
"eslint": "^3.8.1",
"eslint-config-react-app": "^0.5.1",
"eslint-plugin-flowtype": "^2.21.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"node-sass": "^4.5.0",
"nwb": "^0.15.6",
"nwb-sass": "^0.7.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"postcss": "^6.0.21",
"webpack": "^2.7.0"
},
"author": {
"name": "Clauderic Demers",
"email": "[email protected]"
},
"user": "clauderic",
"homepage": "https://github.com/clauderic/react-infinite-calendar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/clauderic/react-infinite-calendar.git"
},
"bugs": {
"url": "https://github.com/clauderic/react-infinite-calendar/issues"
},
"keywords": [
"react",
"reactjs",
"react-component",
"infinite",
"calendar",
"endless",
"date",
"date-picker",
"month",
"day",
"year",
"scrolling",
"virtual",
"picker",
"material",
"flat"
]
}