forked from jquense/react-big-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 4.49 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
{
"name": "react-big-calendar",
"version": "0.22.0",
"description": "Calendar! with events",
"author": "Jason Quense <monastic.panic@gmail.com>",
"repository": "intljusticemission/react-big-calendar",
"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": "node-sass src/sass/styles.scss ./lib/css/react-big-calendar.css",
"sass": "npm run s && npm run sass-dnd",
"sass-dnd": "node-sass src/addons/dragAndDrop/styles.scss ./lib/addons/dragAndDrop/styles.css",
"autoprefixer": "postcss --use autoprefixer -b 'ie >= 10, safari >= 8, last 2 versions' < ./lib/css/react-big/calendar.css | postcss --use autoprefixer -b 'ie >= 10, safari >= 8, last 2 versions' < ./lib/addons/dragAndDrop/styles.css",
"build:css": "npm run sass && npm run autoprefixer",
"assets": "cpy src/sass/* lib/sass && npm run 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": "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": "^16.6.1",
"react-dom": "^16.6.1"
},
"devDependencies": {
"@4c/rollout": "^1.2.0",
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.5",
"@storybook/addon-actions": "^5.0.11",
"@storybook/react": "^5.0.11",
"autoprefixer": "^9.5.1",
"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",
"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",
"lint-staged": "^8.0.4",
"markdown-jsx-loader": "^3.0.2",
"marked": "^0.5.1",
"moment": "^2.22.2",
"mt-changelog": "^0.6.1",
"node-sass": "4.12.0",
"postcss": "^7.0.16",
"postcss-cli": "^6.1.2",
"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",
"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",
"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",
"bootstrap-sass": "^3.4.1",
"classnames": "^2.2.6",
"date-arithmetic": "^4.0.0",
"dom-helpers": "^3.4.0",
"invariant": "^2.2.4",
"lodash": "^4.17.11",
"lodash-es": "^4.17.11",
"memoize-one": "^4.0.3",
"prop-types": "^15.6.2",
"react-overlays": "^1.2.0",
"uncontrollable": "^6.2.3",
"warning": "^4.0.2"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
}
}