-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 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
{
"name": "@j.k.bi/react-gantt",
"version": "1.0.0-rc.1",
"description": "Gantt chart plugin for react",
"peerDependencies": {
"antd": "^4.0.0",
"react": "^16.9.0 || ^17.0.0",
"react-dom": "^16.9.0 || ^17.0.0"
},
"dependencies": {
"classnames": "^2.2.6",
"dayjs": "^1.10.7"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-react-jsx": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/plugin-transform-spread": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.13.13",
"@babel/runtime": "^7.14.0",
"autoprefixer": "^10.2.5",
"autoprefixer-stylus": "^1.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"colors": "^1.3.0",
"copy-webpack-plugin": "^8.1.1",
"core-js": "^3.14.0",
"css-loader": "^5.2.4",
"css-minimizer-webpack-plugin": "^2.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"nib": "^1.1.2",
"postcss": "^8.3.11",
"postcss-modules": "^4.2.2",
"poststylus": "^1.0.1",
"raw-loader": "^4.0.2",
"rucksack-css": "^1.0.2",
"style-loader": "^2.0.0",
"stylus": "^0.55.0",
"stylus-loader": "^6.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.51.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.5.0"
},
"main": "lib/index.js",
"scripts": {
"start": "webpack-dev-server --env=dev --inline --progress",
"dev": "webpack-dev-server --env dev --progress",
"test": "webpack-dev-server --env test --progress",
"build": "rm -rf dist/* && webpack --env prod --progress",
"lib": "rm -rf lib/* && npx babel src/GanttReact --out-dir lib --copy-files",
"css": "node bash/stylus.mjs",
"compile": "npm run lib && npm run css"
},
"keywords": [
"react",
"gantt",
"visualization"
],
"author": {
"name": "J.K.Bi",
"url": "https://www.mrb-fe.dev"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:jkiss/React-Gantt-Lib.git"
},
"bugs": {
"url": "https://github.com/jkiss/React-Gantt-Lib/issues"
},
"homepage": "https://github.com/jkiss/React-Gantt-Lib",
"eslintConfig": {
"rules": {
"no-unused-vars": 0
}
}
}