forked from jquense/react-big-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.02 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
{
"name": "react-big-calendar",
"version": "0.14.4",
"description": "Calendar! with events",
"author": "Jason Quense <[email protected]>",
"repository": "intljusticemission/react-big-calendar",
"license": "MIT",
"main": "lib/index.js",
"style": "lib/css/react-big-calendar.css",
"files": [
"lib/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"scheduler",
"react-component",
"react",
"calendar",
"events",
"full calendar"
],
"scripts": {
"clean": "rimraf lib",
"clean:examples": "rimraf examples/static",
"l": "lessc --autoprefix=\"ie >= 10, safari >= 8, last 2 versions\" ",
"less": "npm run l src/less/styles.less ./lib/css/react-big-calendar.css && npm run less-dnd",
"less-dnd": "npm run l src/addons/dragAndDrop/styles.less ./lib/addons/dragAndDrop/styles.css",
"assets": "cpy src/less/* lib/less && npm run assets-addons",
"assets-addons": "cpy addons/**/*.less ../lib/ --cwd=src --parents",
"build": "npm run clean && babel src --out-dir lib && npm run assets && npm run less && npm run less",
"build:examples": "npm run clean:examples && webpack --config webpack/examples.config.js",
"build:visual-test": "webpack --config webpack/visual-test.js",
"build:watch": "babel lib -w -d build",
"examples": "npm run clean:examples && webpack-dev-server --inline --hot --config webpack/examples.config.js",
"lint": "eslint src --ext .jsx --ext .js",
"storybook": "start-storybook -p 9002",
"test": "npm run lint",
"tdd": "karma start",
"release": "release"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0",
"react-dom": "^0.14.9 || ^15.3.0"
},
"devDependencies": {
"@kadira/storybook": "^1.28.1",
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-preset-jason": "^3.0.0",
"component-metadata-loader": "^3.0.1",
"cpy": "^3.4.1",
"eslint": "^3.0.0",
"eslint-config-jason": "^4.0.0",
"eslint-import-resolver-webpack": "^0.8.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-react": "^6.8.0",
"globalize": "^0.1.1",
"less": "^2.7.2",
"less-plugin-autoprefix": "^1.5.1",
"markdown-jsx-loader": "^2.0.1",
"marked": "^0.3.5",
"moment": "^2.17.1",
"mt-changelog": "^0.6.1",
"react": "^15.0.1",
"react-bootstrap": "^0.28.0",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-docgen": "^2.14.1",
"react-dom": "^15.3.0",
"release-script": "^1.0.0",
"rimraf": "^2.4.2",
"webpack": "^2.4.1",
"webpack-atoms": "^1.0.2",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"classnames": "^2.1.3",
"date-arithmetic": "^3.0.0",
"dom-helpers": "^2.3.0 || ^3.0.0",
"invariant": "^2.1.0",
"lodash": "^4.17.4",
"material-ui": "^0.18.7",
"prop-types": "^15.5.8",
"react-overlays": "^0.7.0",
"react-prop-types": "^0.4.0",
"react-tap-event-plugin": "^0.2.2",
"uncontrollable": "^3.3.1 || ^4.0.0",
"warning": "^2.0.0"
}
}