forked from coreui/coreui-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.41 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.41 KB
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
122
123
124
125
126
{
"name": "@coreui/react",
"version": "3.4.6",
"description": "CoreUI React 17 Bootstrap 4 components",
"license": "MIT",
"type": "module",
"author": {
"name": "CoreUI",
"url": "https://coreui.io",
"github": "https://github.com/coreui",
"twitter": "https://twitter.com/core_ui"
},
"contributors": [
{
"name": "CoreUI Team",
"url": "https://github.com/orgs/coreui/people"
}
],
"homepage": "https://coreui.io",
"main": "lib/index.js",
"types": "src/index.d.ts",
"module": "es/index.js",
"files": [
"css/",
"es/",
"lib/",
"src/",
"tests/",
"umd/",
"README.md"
],
"scripts": {
"clean": "nwb clean-module && nwb clean-demo",
"lint": "eslint src",
"changelog": "auto-changelog --starting-version 3.0.0-rc.2 --commit-limit false --hide-credit",
"build": "npm run build:lib && npm run build:esm",
"build:lib": "rollup --environment BUNDLE:false --c --sourcemap",
"build:esm": "cross-env BABEL_ENV=esm-dir babel src --out-dir es --copy-files && del-cli es/**/tests/**",
"storybook": "start-storybook",
"jest:test": "cross-env BABEL_ENV=test jest",
"jest:coverage": "jest --coverage",
"jest:init": "jest init",
"jest:cache": "jest --clearCache"
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"@coreui/icons": "^2.0.0-rc.0",
"@coreui/icons-react": "https://github.com/fcolacilli/coreui-icons-react.git",
"@coreui/utils": "~1.3.1",
"@popperjs/core": "^2.9.1",
"classnames": "~2.2.6",
"core-js": "^3.9.1",
"next": "^10.1.3",
"path-to-regexp": "^6.2.0",
"perfect-scrollbar": "~1.5.0",
"prop-types": "~15.7.2",
"react-transition-group": "~4.4.1",
"tippy.js": "^6.3.1"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@coreui/coreui": "^3.4.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.1",
"@storybook/addon-knobs": "^6.1.21",
"@storybook/addon-storysource": "^6.1.21",
"@storybook/react": "^6.1.21",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"auto-changelog": "~2.2.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"del-cli": "^3.0.1",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.22.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"expect": "^26.6.2",
"jest": "^26.6.3",
"postcss": "^8.2.9",
"react": "^17.0.1",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.1",
"rollup": "^2.44.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"sinon": "^9.2.4",
"webpack": "^4.46.0"
},
"repository": {
"type": "git",
"url": "https://github.com/coreui/coreui-react.git"
},
"bugs": {
"url": "https://github.com/coreui/coreui-react/issues"
},
"keywords": [
"coreui",
"react",
"bootstrap",
"framework",
"responsive",
"layout",
"component",
"components",
"library"
]
}