forked from jquense/react-big-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.65 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
{
"name": "react-big-calendar",
"version": "0.20.0",
"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",
"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/core": "^7.1.0",
"@storybook/addon-actions": "^3.4.11",
"@storybook/react": "3.4.11",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"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.6.0",
"eslint-config-jason": "^4.1.0",
"eslint-config-prettier": "^3.0.1",
"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": "^7.3.0",
"markdown-jsx-loader": "^3.0.2",
"marked": "^0.5.0",
"moment": "^2.22.2",
"mt-changelog": "^0.6.1",
"prettier": "^1.14.3",
"react": "^16.5.2",
"react-bootstrap": "^0.32.4",
"react-docgen": "^3.0.0-rc.1",
"react-dom": "^16.5.2",
"react-tackle-box": "^2.1.0",
"rimraf": "^2.4.2",
"webpack": "^4.19.1",
"webpack-atoms": "^8.0.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"dependencies": {
"@babel/cli": "^7.1.0",
"classnames": "^2.2.6",
"date-arithmetic": "^3.0.0",
"dom-helpers": "^2.3.0 || ^3.0.0",
"invariant": "^2.2.4",
"lodash": "^4.17.11",
"memoize-one": "^4.0.2",
"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"
}
}