-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.58 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
{
"name": "iron-ui",
"version": "0.0.8",
"description": "A react UI Library",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"dist",
"lib",
"es"
],
"sideEffects": [
"dist/*",
"es/**/style/*",
"lib/**/style/*",
"*.less"
],
"author": "iron",
"license": "MIT",
"keywords": [
"react",
"antd",
"virtualized",
"select",
"autocomplete",
"tree"
],
"homepage": "https://ui.chenggang.win",
"scripts": {
"dist": "gulp compile-with-dist",
"compile": "gulp build",
"test": "jest --watch",
"storybook": "start-storybook --ci -p 6008",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@ant-design/icons": "^2.1.1",
"antd": "^4.6.5",
"classnames": "^2.2.6",
"dayjs": "^1.8.36",
"lodash": "^4.17.20",
"prop-types": "^15.7.2",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.5"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/eslint-parser": "^7.11.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/react": "^6.0.21",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@types/jest": "^26.0.13",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.2.2",
"css-minimizer-webpack-plugin": "^1.1.3",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"jest": "^26.4.2",
"less": "^3.12.2",
"less-loader": "^7.0.0",
"less-plugin-npm-import": "^2.1.0",
"merge2": "^1.4.1",
"mini-css-extract-plugin": "^0.11.0",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"through2": "^4.0.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpackbar": "^4.0.0"
},
"bundlesize": [
{
"path": "./dist/iron-ui.min.js",
"maxSize": "300 kB"
},
{
"path": "./dist/iron-ui.min.css",
"maxSize": "20 kB"
}
]
}