-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.41 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": "hui-react",
"version": "0.2.2",
"private": false,
"description": "React component library",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"author": "LiHuiHe",
"license": "MIT",
"keywords": [
"UI",
"Component",
"React"
],
"files": [
"dist"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"async-validator": "^4.2.5",
"axios": "^1.4.0",
"babel-plugin-component": "^1.1.1",
"classnames": "^2.3.2",
"http-proxy-middleware": "^2.0.6",
"lodash-es": "^4.17.21",
"react-transition-group": "^4.4.5",
"rollup": "^2.79.1",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"rollup-plugin-sass": "^1.12.19",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.60.0",
"web-vitals": "^2.1.4"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run clean && npm run build-es && npm run build-umd",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-ts": "tsc -p tsconfig.build.json",
"build-css": "node-sass ./src/styles/index.scss ./dist/index.css",
"build-es": "rollup --config rollup/rollup.esm.config.js",
"build-umd": "rollup --config rollup/rollup.umd.config.js",
"clean": "rimraf ./dist",
"prepublish": "npm run build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-interactions": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/blocks": "^7.0.6",
"@storybook/manager-api": "^7.0.6",
"@storybook/preset-create-react-app": "^7.0.6",
"@storybook/react": "^7.0.6",
"@storybook/react-webpack5": "^7.0.6",
"@storybook/testing-library": "^0.0.14-next.2",
"@storybook/theming": "^7.0.6",
"@types/classnames": "^2.3.1",
"@types/jest": "^27.5.2",
"@types/lodash-es": "^4.17.7",
"@types/node": "^16.18.23",
"@types/react": "^18.0.32",
"@types/react-dom": "^18.0.11",
"@types/react-transition-group": "^4.4.5",
"babel-plugin-named-exports-order": "^0.0.2",
"mobx": "^6.9.0",
"mobx-react": "^7.6.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"rimraf": "^5.0.1",
"storybook": "^7.0.6",
"typescript": "^4.9.5",
"webpack": "^5.79.0"
}
}