forked from mantinedev/mantine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
199 lines (199 loc) · 7.63 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
{
"name": "mantine-a91763c0e2",
"private": true,
"workspaces": [
"src/*"
],
"version": "7.1.7",
"description": "Mantine Components Monorepo",
"main": "index.js",
"repository": "https://github.com/mantinedev/mantine.git",
"author": "Vitaly Rtishchev <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "npm run docs:docgen && npm run generate-css && cd docs && yarn",
"codegen": "esno scripts/codegen",
"dev": "cd docs && npm run dev",
"demos": "esno scripts/demo-import",
"sync-branches": "sh scripts/sync-branches.sh",
"changelog": "esno scripts/changelog",
"syncpack": "syncpack list-mismatches",
"typecheck": "tsc --noEmit && npm run docs:typecheck",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint src src --ext .ts,.tsx --cache",
"lint:stylelint": "stylelint '**/*.css' --cache",
"build": "esno --max-old-space-size=8096 scripts/build",
"build:all": "npm run clean:tsbuildinfo && npm run build all && npm run build:private",
"build:demos": "npm run build @mantine/demos",
"build:private": "npm run build @mantine/styles-api && npm run build @mantine/demos",
"jest": "jest",
"prettier:test": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"exports": "esno scripts/check-exports",
"conflicts": "esno scripts/check-conflicts",
"clean:tsbuildinfo": "rimraf src/**/*.tsbuildinfo",
"clean": "rimraf src/*/{esm,cjs,lib,dist} src/**/*.tsbuildinfo",
"test": "npm run prettier:test && npm run syncpack && npm run typecheck && npm run lint && npm run jest",
"docs": "npm run docs:docgen && cd docs && npm run dev",
"docs:typecheck": "cd docs && npm run typecheck",
"docs:docgen": "esno scripts/docgen",
"docs:clean": "cd docs && npm run clean",
"docs:build": "npm run docs:docgen && npm run build:private && cd docs && npm run build",
"docs:serve": "cd docs && npm run serve",
"docs:deploy": "npm run docs:build && gh-pages -d docs/out -t true",
"_release:no-test": "esno scripts/release",
"_release": "npm test && npm run clean && esno scripts/release",
"_release:alpha:patch": "npm run _release:no-test patch -- --stage alpha --tag next",
"_release:alpha:minor": "npm run _release:no-test minor -- --stage alpha --tag next",
"_release:alpha:major": "npm run _release:no-test major -- --stage alpha --tag next",
"_release:beta:major": "npm run _release:no-test major -- --stage beta --tag next",
"release:patch": "npm run _release patch && npm run docs:deploy",
"release:patch:no-test": "npm run _release:no-test patch && npm run docs:deploy",
"release:minor": "npm run _release minor && npm run docs:deploy",
"release:major": "npm run _release major && npm run docs:deploy",
"storybook": "storybook dev -p 6006",
"generate-demo-stories": "esno scripts/generate-demo-stories",
"generate-css": "esno scripts/generate-css",
"generate-css-layers": "esno scripts/generate-css-layers"
},
"resolutions": {
"@types/react": "18.2.17",
"wrap-ansi": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@hello-pangea/dnd": "^16.3.0",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-actions": "^7.4.6",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/addon-styling-webpack": "^0.0.4",
"@storybook/react": "^7.4.6",
"@storybook/react-webpack5": "7.4.6",
"@storybook/testing-library": "^0.2.2",
"@sucrase/jest-plugin": "^2.1.1",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "14.2.0",
"@types/chroma-js": "^2.4.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.3",
"@types/jest-axe": "^3.5.5",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"@types/react-transition-group": "^4.4.6",
"@types/resize-observer-browser": "^0.1.7",
"@types/rimraf": "^3.0.2",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"babel-loader": "^8.3.0",
"chalk": "^4.1.1",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"esbuild": "^0.17.19",
"esbuild-jest": "^0.5.0",
"eslint": "^8.45.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-mantine": "2.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.14",
"esno": "^0.6.0",
"execa": "^5.0.1",
"fast-glob": "^3.2.5",
"fs-extra": "^10.0.0",
"glob": "^10.3.10",
"gh-pages": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"is-directory": "^0.3.1",
"jest": "^29.6.1",
"jest-axe": "^8.0.0",
"jest-environment-jsdom": "^29.6.1",
"new-github-release-url": "^1.0.0",
"open": "^8.2.0",
"postcss": "^8.4.24",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^7.3.3",
"postcss-preset-mantine": "1.7.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.0.0",
"react-docgen-typescript": "2.1.0",
"react-dom": "^18.2.0",
"react-virtuoso": "^4.3.10",
"rimraf": "^3.0.2",
"rollup": "^2.50.5",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-visualizer": "^5.5.0",
"simple-git": "^2.39.0",
"storybook": "^7.4.6",
"storybook-dark-mode": "^3.0.1",
"style-loader": "^3.3.3",
"stylelint": "^15.10.2",
"stylelint-config-standard-scss": "^10.0.0",
"syncpack": "^10.7.3",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "5.1.6",
"webpack": "^5.75.0",
"yargs": "^17.7.2"
},
"dependencies": {
"@floating-ui/react": "^0.24.8",
"@tabler/icons-react": "^2.29.0",
"@tiptap/core": "^2.0.4",
"@tiptap/extension-code-block-lowlight": "^2.0.4",
"@tiptap/extension-color": "^2.0.4",
"@tiptap/extension-highlight": "^2.0.4",
"@tiptap/extension-link": "^2.0.4",
"@tiptap/extension-placeholder": "^2.0.4",
"@tiptap/extension-subscript": "^2.0.4",
"@tiptap/extension-superscript": "^2.0.4",
"@tiptap/extension-text-align": "^2.0.4",
"@tiptap/extension-text-style": "^2.0.4",
"@tiptap/extension-underline": "^2.0.4",
"@tiptap/pm": "^2.0.4",
"@tiptap/react": "^2.0.4",
"@tiptap/starter-kit": "^2.0.4",
"chroma-js": "^2.4.2",
"clsx": "2.0.0",
"csstype": "3.1.2",
"dayjs": "^1.10.5",
"embla-carousel-autoplay": "^7.0.0",
"embla-carousel-react": "^7.0.0",
"fast-deep-equal": "^3.1.3",
"highlight.js": "^11.7.0",
"html-react-parser": "1.4.12",
"klona": "^2.0.5",
"lowlight": "^2.7.0",
"prism-react-renderer": "^1.2.1",
"react": "^18.2.0",
"react-dropzone-esm": "15.0.1",
"react-imask": "^6.4.3",
"react-number-format": "^5.2.2",
"react-remove-scroll": "^2.5.6",
"react-textarea-autosize": "8.5.3",
"react-transition-group": "4.4.5",
"type-fest": "^3.13.1",
"zod": "^3.21.4"
},
"volta": {
"node": "20.5.0"
}
}