-
Notifications
You must be signed in to change notification settings - Fork 414
/
package.json
88 lines (88 loc) · 2.66 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
{
"name": "react-big-scheduler",
"version": "0.2.7",
"description": "A scheduler and resource planning component built for React and made for modern browsers (IE10+)",
"keywords": [
"scheduler",
"react-component",
"react",
"react-big-scheduler",
"resource planning",
"antd"
],
"files": [
"lib/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"main": "lib/index",
"homepage": "https://github.com/StephenChou1017/react-big-scheduler",
"author": "Stephen Chou <[email protected]> (https://github.com/StephenChou1017)",
"repository": {
"type": "git",
"url": "[email protected]:StephenChou1017/react-big-scheduler.git"
},
"bugs": {
"url": "http://github.com/StephenChou1017/react-big-scheduler/issues"
},
"license": "MIT",
"config": {},
"scripts": {
"clean": "rimraf ./lib && mkdir lib",
"build": "node scripts/build.js",
"clean:exampledist": "rimraf ./exampledist/static",
"build:exampledist": "npm run clean:exampledist && cpy src/css/style.css exampledist/static && cross-env NODE_ENV=production webpack --config ./webpack/webpack.config.js",
"example": "webpack-dev-server --config ./webpack/webpack-dev.config.js --hot",
"analyz": "cross-env NODE_ENV=production npm_config_report=true npm run build",
"build:dll": "cross-env NODE_ENV=production webpack --config ./webpack/webpack.dll.config.js"
},
"pre-commit": [
"lint"
],
"dependencies": {
"antd": "^3.16.6",
"cpy": "^3.4.1",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dnd": "^7.5.0",
"react-dnd-html5-backend": "^7.5.0",
"react-dom": "^16.8.6",
"rrule": "^2.6.0"
},
"devDependencies": {
"babel": "6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "7.1.4",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "5.16.0",
"eslint-plugin-react": "7.13.0",
"json-loader": "0.5.7",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mocha": "^6.1.4",
"mocha-babel": "3.0.3",
"node-sass": "^4.12.0",
"react-hot-loader": "^4.8.4",
"react-redux": "^7.0.3",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-router-redux": "^4.0.8",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
}
}