forked from mondaycom/vibe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
267 lines (267 loc) · 9.1 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
{
"name": "monday-ui-react-core",
"version": "2.14.1",
"description": "Official monday.com UI resources for application development in React.js",
"main": "./dist/main.js",
"types": "./dist/types.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/esm/src/index.js",
"default": "./dist/main.js"
},
"./dist/": "./dist/",
"./icons": "./dist/esm/src/components/Icon/Icons/icons.js",
"./interactionsTests": "./dist/esm/src/tests/interactionsTests.js",
"./testIds": "./dist/esm/src/tests/testIds.js",
"./storybookComponents": "./dist/storybook/index.js",
"./tokens": "./dist/tokens/tokens.css",
"./mockedClassNames": {
"import": "./dist/mocked_classnames_esm/src/index.js"
}
},
"typesVersions": {
"*": {
"icons": [
"./dist/esm/components/Icon/Icons/index.d.ts"
],
"interactionsTests": [
"./dist/esm/tests/interactions-utils.d.ts"
],
"testIds": [
"./dist/esm/tests/test-ids-utils.d.ts"
]
}
},
"scripts": {
"test": "jest",
"test:stories": "testing=storybook TEST_END_FILES=jest-story jest",
"test:update": "npm run test -- -u",
"test:coverage": "npm run test -- --coverage",
"start": "npm run build:react-icons && npm run build:commonjs -- --watch",
"build": "npm run build:react-icons && npm run build:storybook-exports && npm run build:commonjs && npm run build:esm && npm run build:esm:mock-classnames && npm run build:types",
"build:exports": "./scripts/build-exports.js",
"build:types": "./scripts/build-types.js",
"build:storybook-exports": "./scripts/build-storybook-exports.js",
"build:commonjs": "webpack --mode production --config webpack/default.config.js",
"build:esm": "rollup -c",
"build:esm:mock-classnames": "mock_classnames=on rollup -c",
"build:react-icons": "svg2react-icon --typescript --keep-colors node_modules/monday-ui-style/src/Icons src/components/Icon/Icons",
"storybook": "storybook=true start-storybook -p 7007",
"build-storybook": "storybook=true build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"link-local": "npm link && npm start",
"plop": "plop",
"add-ref-to-icons": "node ./scripts/add-forward-ref-icons.js",
"fix-lint": "prettier --write \"{,!(node_modules)/**/}*.{js,jsx,ts,tsx}\"",
"eslint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\"",
"eslint-fix": "npm run eslint -- --fix",
"stylelint": "stylelint \"**/*.scss\"",
"stylelint-fix": "npm run stylelint -- --fix",
"release": "./scripts/release.js",
"pre-release": "./scripts/prerelease.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mondaycom/monday-ui-react-core.git"
},
"author": "",
"license": "MIT",
"files": [
"src/",
"dist/",
"README.md",
"THEME_README.md"
],
"bugs": {
"url": "https://github.com/mondaycom/monday-ui-react-core/issues"
},
"homepage": "https://github.com/mondaycom/monday-ui-react-core#readme",
"dependencies": {
"@popperjs/core": "2.11.6",
"a11y-dialog": "^7.5.2",
"autosize": "^5.0.1",
"body-scroll-lock": "^4.0.0-beta.0",
"classnames": "^2.3.2",
"lodash-es": "^4.17.21",
"monday-ui-style": "0.1.162",
"prop-types": "^15.8.1",
"react-dates": "21.8.0",
"react-icons": "^4.10.1",
"react-inlinesvg": "^3.0.1",
"react-popper": "^2.3.0",
"react-select": "^3.2.0",
"react-transition-group": "^4.4.5",
"react-virtualized-auto-sizer": "^1.0.7",
"react-window": "^1.8.7",
"react-windowed-select": "^2.0.4",
"style-inject": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-transform-modules-commonjs": "^7.16.5",
"@babel/plugin-transform-react-jsx": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@hot-loader/react-dom": "^16.13.0",
"@jest/transform": "^26.6.2",
"@mdx-js/loader": "^2.0.0-rc.2",
"@mdx-js/mdx": "^2.0.0-rc.2",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@storybook/addon-a11y": "6.5.7",
"@storybook/addon-actions": "6.5.7",
"@storybook/addon-controls": "6.5.7",
"@storybook/addon-docs": "6.5.7",
"@storybook/addon-interactions": "^6.5.7",
"@storybook/addon-links": "6.5.7",
"@storybook/addon-storyshots": "6.5.7",
"@storybook/addon-toolbars": "^6.5.9",
"@storybook/addons": "6.5.7",
"@storybook/builder-webpack5": "6.5.7",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "6.5.7",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "6.5.7",
"@storybook/source-loader": "6.5.7",
"@storybook/storybook-deployer": "^2.8.10",
"@storybook/testing-library": "^0.0.9",
"@storybook/theming": "6.5.7",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/autosize": "^4.0.1",
"@types/body-scroll-lock": "^3.1.0",
"@types/lodash": "^4.14.184",
"@types/lodash-es": "^4.17.6",
"@types/react": "^18.0.25",
"@types/react-dates": "^21.8.3",
"@types/react-transition-group": "^4.4.5",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"acorn": "^8.7.1",
"autoprefixer": "^10.4.0",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.3",
"babel-plugin-react-docgen": "^4.2.1",
"babel-plugin-react-require": "^3.1.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-polyfill": "^6.26.0",
"babel-preset-react": "^6.24.1",
"boxt": "^1.1.1",
"chalk": "^4.1.2",
"chromatic": "^6.3.3",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^6.5.1",
"csstype": "^3.1.0",
"ejs": "^3.1.9",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.5",
"execa": "^5.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"js-sha256": "^0.9.0",
"json-loader": "^0.5.7",
"jsontosass": "^0.2.0",
"lerna-changelog": "^2.2.0",
"mini-css-extract-plugin": "^2.4.5",
"plop": "2.7.6",
"postcss": "^8.4.5",
"postcss-import": "^15.1.0",
"postcss-loader": "^6.2.1",
"postcss-scss": "^4.0.2",
"preact": "^10.8.0",
"prettier": "^2.5.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-markdown": "^7.1.0",
"react-resizable": "^3.0.4",
"react-test-renderer": "^16.14.0",
"rollup": "^2.79.1",
"rollup-plugin-import-css": "^3.1.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.51.0",
"sass-loader": "^12.4.0",
"snapshot-diff": "^0.9.0",
"storybook-addon-performance": "^0.16.1",
"storybook-addon-react-docgen": "^1.2.43-canary.135.1793.0",
"storybook-addon-themes": "^6.1.0",
"storybook-docs-toc": "^1.7.0",
"style-loader": "^3.3.1",
"stylelint": "^14.2.0",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"svg2react-icon": "^3.1.178",
"terser-webpack-plugin": "^5.3.0",
"ts-jest": "^26.0.0",
"ts-loader": "^9.3.1",
"typescript": "^4.7.3",
"typescript-plugin-css-modules": "^4.2.1",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
},
"peerDependencies": {
"moment": "^2.29.1",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"sideEffects": [
"*.scss",
"*.css",
"*.scss.js",
"*.css.js"
],
"storybook-deployer": {
"commitMessage": "Deploy Storybook [ci-skip]"
},
"browserslist": [
"last 4 versions and >0.1%",
"Firefox ESR",
"not IE 11",
"Edge 18",
"not dead",
"not Samsung > 0",
"not op_mini all",
"not and_ff > 0",
"not and_qq > 0",
"not and_uc > 0"
],
"changelog": {
"labels": {
"PR: Bugfix 🐛": "Bug Fixes",
"PR: New Feature 🕹": "New Features",
"PR: Dependencies 🛠": "Dependency Upgrades",
"PR: Documentation 📖": "Documentation",
"PR: Internal 🏠": "Internal Changes",
"PR: Breaking Changes 💥": "Breaking Changes",
"PR: Icon 💎": "New Icons"
}
}
}