forked from jquense/react-big-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 4.06 KB
/
package.json
File metadata and controls
136 lines (136 loc) · 4.06 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@alex_lai/gg-react-big-calendar",
"version": "0.0.1",
"description": "react-big-calendar with material ui",
"author": "Alex Lai",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeMyWorld/material-react-big-calendar.git"
},
"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",
"build:examples": "npm run clean:examples && webpack --config examples/webpack.config.js",
"examples": "npm run clean:examples && webpack-dev-server --config examples/webpack.config.js --mode development",
"lint": "eslint src test",
"storybook": "start-storybook -p 9002",
"test": "npm run lint && jest",
"tdd": "jest --watch",
"release": "rollout",
"prepublishOnly": "npm run build",
"prettier": "prettier '**/*js' !examples/bundle.js '!lib/**' --write ",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": "eslint",
"test/**/*.js": "eslint",
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
},
"devDependencies": {
"@4c/rollout": "^1.2.0",
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.5",
"@storybook/addon-actions": "^3.4.11",
"@storybook/react": "3.4.11",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-preset-jason": "^6.0.1",
"bootstrap": "^3.3.5",
"component-metadata-loader": "^4.0.0",
"cpy-cli": "^2.0.0",
"eslint": "^5.8.0",
"eslint-config-jason": "^4.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"font-awesome": "^4.7.0",
"globalize": "^0.1.1",
"husky": "^0.14.3",
"jest": "^23.6.0",
"less": "^2.7.3",
"less-plugin-autoprefix": "^1.5.1",
"lint-staged": "^8.0.4",
"markdown-jsx-loader": "^3.0.2",
"marked": "^0.5.1",
"moment": "^2.22.2",
"mt-changelog": "^0.6.1",
"prettier": "^1.15.1",
"react": "^16.6.1",
"react-bootstrap": "^0.32.4",
"react-docgen": "^3.0.0-rc.1",
"react-dom": "^16.6.1",
"react-tackle-box": "^2.1.0",
"rimraf": "^2.4.2",
"webpack": "^4.25.1",
"webpack-atoms": "^8.0.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"@material-ui/core": "^3.6.0",
"@material-ui/icons": "^3.0.1",
"classnames": "^2.2.6",
"date-arithmetic": "^3.0.0",
"dom-helpers": "^3.4.0",
"invariant": "^2.2.4",
"lodash": "^4.17.11",
"memoize-one": "^4.0.3",
"prop-types": "^15.6.2",
"prop-types-extra": "^1.1.0",
"react-overlays": "^0.8.3",
"uncontrollable": "^6.0.0",
"warning": "^4.0.2"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"bugs": {
"url": "https://github.com/CodeMyWorld/material-react-big-calendar/issues"
},
"homepage": "https://github.com/CodeMyWorld/material-react-big-calendar#readme",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
}
}