forked from jquense/react-big-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
162 lines (162 loc) · 4.92 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "react-big-calendar",
"version": "0.38.6",
"description": "Calendar! with events",
"author": {
"name": "Jason Quense",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jquense/react-big-calendar.git"
},
"license": "MIT",
"main": "lib/index.js",
"module": "dist/react-big-calendar.esm.js",
"style": "lib/css/react-big-calendar.css",
"files": [
"lib/",
"dist/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"scheduler",
"react-component",
"react",
"calendar",
"events",
"full calendar"
],
"scripts": {
"clean": "rimraf lib",
"clean:examples": "rimraf examples/static",
"s": "sass ./lib/sass/styles.scss ./lib/css/react-big-calendar.css",
"sass": "yarn s && yarn sass-dnd",
"sass-dnd": "sass ./lib/addons/dragAndDrop/styles.scss ./lib/addons/dragAndDrop/styles.css",
"autoprefixer": "postcss ./lib/css/react-big-calendar.css && postcss ./lib/addons/dragAndDrop/styles.css",
"build:css": "yarn sass && yarn autoprefixer",
"assets": "cpy src/sass/* lib/sass && yarn assets-addons",
"assets-addons": "cpy addons/**/*.scss ../lib/ --cwd=src --parents",
"build:umd": "BABEL_ENV=esm yarn rollup -c",
"build:cjs": "babel src --out-dir lib",
"build": "yarn clean && yarn build:cjs && yarn build:umd && yarn assets && yarn build:css",
"build:examples": "yarn clean:examples && webpack --config examples/webpack.config.js",
"examples": "yarn clean:examples && webpack-dev-server --config examples/webpack.config.js --mode development",
"lint": "eslint src test",
"storybook": "start-storybook -p 9002",
"test": "yarn lint && jest",
"tdd": "jest --watch",
"release": "rollout",
"prepublishOnly": "yarn 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
},
"browserslist": [
"ie >= 10",
"safari >= 8",
"last 2 versions"
],
"peerDependencies": {
"react": "^16.6.1 || ^17",
"react-dom": "^16.6.1 || ^17"
},
"devDependencies": {
"@4c/rollout": "^1.4.0",
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-actions": "^6.1.15",
"@storybook/react": "^6.1.15",
"autoprefixer": "^10.4.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.22",
"babel-plugin-transform-rename-import": "^2.3.0",
"babel-preset-jason": "^6.0.1",
"bootstrap": "^3.3.5",
"bootstrap-sass": "^3.4.1",
"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",
"eslint-plugin-react-hooks": "^4.0.4",
"font-awesome": "^4.7.0",
"globalize": "^0.1.1",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lint-staged": "^8.0.4",
"luxon": "^2.0.2",
"markdown-jsx-loader": "^3.0.2",
"marked": "^0.5.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"mt-changelog": "^0.6.1",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"prettier": "^1.15.1",
"react": "^16.13.1",
"react-bootstrap": "^0.32.4",
"react-docgen": "^3.0.0-rc.1",
"react-dom": "^16.13.1",
"react-tackle-box": "^2.1.0",
"rimraf": "^2.4.2",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-size-snapshot": "^0.8.0",
"rollup-plugin-terser": "^4.0.2",
"sass": "1.44.0",
"semantic-release": "^18.0.1",
"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",
"clsx": "^1.0.4",
"date-arithmetic": "^4.1.0",
"dom-helpers": "^5.1.0",
"invariant": "^2.2.4",
"lodash": "^4.17.11",
"lodash-es": "^4.17.11",
"memoize-one": "^5.1.1",
"prop-types": "^15.7.2",
"react-overlays": "^4.1.1",
"uncontrollable": "^7.0.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"bugs": {
"url": "https://github.com/jquense/react-big-calendar/issues"
},
"homepage": "https://github.com/jquense/react-big-calendar#readme"
}