-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
package.json
202 lines (202 loc) · 7.88 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
{
"name": "mantine-a91763c0e2",
"version": "7.13.5",
"description": "Mantine Components Monorepo",
"packageManager": "[email protected]",
"license": "MIT",
"private": true,
"author": "Vitaly Rtishchev <[email protected]>",
"repository": "https://github.com/mantinedev/mantine.git",
"engines": {
"node": ">=20.9.0"
},
"workspaces": [
"packages/**/*",
"apps/*"
],
"scripts": {
"hc": "cd apps/help.mantine.dev && npm run dev",
"hc:build": "cd apps/help.mantine.dev && npm run build",
"hc:exports": "tsx scripts/docs/hc-exports",
"hc:deploy": "npm run hc:build && wrangler pages deploy apps/help.mantine.dev/out --branch master --project-name help-mantine-dev",
"chmod": "sh scripts/utils/chmod.sh",
"setup": "npm run docs:docgen && tsx scripts/docs/generate-css-exports",
"plop": "tsx scripts/plop",
"format-changelogs": "tsx scripts/docs/format-changelogs",
"changelog": "tsx scripts/docs/changelog",
"storybook": "storybook dev -p 2356",
"dev": "npm run docs",
"docs": "cd apps/mantine.dev && npm run dev",
"docs:docgen": "tsx scripts/docgen",
"docs:codegen": "tsx scripts/codegen",
"docs:build": "npm run docs:docgen && cd apps/mantine.dev && npm run build",
"docs:build:alpha": "npm run docs:docgen && cd apps/mantine.dev && npm run build:alpha",
"docs:deploy": "npm run docs:build && gh-pages -d apps/mantine.dev/out -t true",
"docs:deploy:alpha": "npm run docs:build:alpha && wrangler pages deploy apps/mantine.dev/out --branch master --project-name alpha-mantine-dev",
"docs:count": "tsx scripts/docs/count",
"clean": "rimraf --glob packages/*/*/{esm,cjs,lib,dist} packages/*/*/*.tsbuildinfo packages/*/*/styles.css packages/*/*/styles.layer.css packages/@mantine/core/styles",
"build": "tsx scripts/build",
"publish:package": "tsx scripts/publish",
"publish:package:alpha": "tsx scripts/publish --stage alpha --tag next",
"publish:package:beta": "tsx scripts/publish --stage beta --tag next",
"release": "npm test && npm run clean && tsx scripts/release",
"release:alpha:patch": "tsx scripts/release patch --stage alpha --tag next",
"release:alpha:minor": "tsx scripts/release minor --stage alpha --tag next",
"release:alpha:major": "tsx scripts/release major --stage alpha --tag next",
"release:patch": "npm run release 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",
"test": "npm run prettier:test && npm run syncpack && npm run typecheck && npm run lint && npm run jest",
"test:exports": "tsx scripts/tests/exports",
"test:conflicts": "tsx scripts/tests/conflicts",
"test:validate-package-json": "tsx scripts/tests/validate-package-json",
"test:validate-packages-files": "tsx scripts/tests/validate-packages-files",
"jest": "jest",
"typecheck": "tsc --noEmit && cd apps/mantine.dev && npm run typecheck && cd ../help.mantine.dev && npm run typecheck",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint packages apps/mantine.dev/src apps/help.mantine.dev/src scripts --cache",
"stylelint": "stylelint \"**/*.css\" --cache",
"syncpack": "syncpack list-mismatches",
"syncpack:format": "syncpack format",
"prettier:test": "prettier --check \"**/*.{ts,tsx,mdx,css}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx,mdx,css}\""
},
"dependencies": {
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/serialize": "^1.3.2",
"@emotion/server": "^11.11.0",
"@emotion/utils": "^1.4.1",
"@floating-ui/react": "^0.26.27",
"@tabler/icons-react": "^3.3.0",
"@tiptap/core": "^2.9.1",
"@tiptap/extension-code-block": "^2.9.1",
"@tiptap/extension-code-block-lowlight": "^2.9.1",
"@tiptap/extension-color": "^2.9.1",
"@tiptap/extension-highlight": "^2.9.1",
"@tiptap/extension-history": "^2.9.1",
"@tiptap/extension-link": "^2.9.1",
"@tiptap/extension-placeholder": "^2.9.1",
"@tiptap/extension-subscript": "^2.9.1",
"@tiptap/extension-superscript": "^2.9.1",
"@tiptap/extension-task-item": "^2.9.1",
"@tiptap/extension-task-list": "^2.9.1",
"@tiptap/extension-text-align": "^2.9.1",
"@tiptap/extension-text-style": "^2.9.1",
"@tiptap/extension-underline": "^2.9.1",
"@tiptap/pm": "^2.9.1",
"@tiptap/react": "^2.9.1",
"@tiptap/starter-kit": "^2.9.1",
"chroma-js": ">=2.4.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"embla-carousel": "^7.1.0",
"embla-carousel-autoplay": "^7.1.0",
"embla-carousel-react": "^7.1.0",
"fast-deep-equal": "^3.1.3",
"highlight.js": "^11.10.0",
"html-react-parser": "^5.1.18",
"klona": "^2.0.6",
"lowlight": "^3.1.0",
"react": "^18.3.1",
"react-dropzone-esm": "15.0.1",
"react-imask": "^7.6.1",
"react-number-format": "^5.4.2",
"react-remove-scroll": "^2.6.0",
"react-textarea-autosize": "8.5.4",
"react-transition-group": "4.4.5",
"recharts": "^2.13.3",
"shiki": "^1.1.7",
"type-fest": "^4.26.1"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "7.26.0",
"@eslint/js": "^9.14.0",
"@hello-pangea/dnd": "^16.3.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@storybook/addon-styling-webpack": "^1.0.1",
"@storybook/nextjs": "^8.4.2",
"@storybook/react": "^8.4.2",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/chroma-js": "^2.4.4",
"@types/eslint": "^9",
"@types/fs-extra": "^11.0.4",
"@types/gh-pages": "^6.1.0",
"@types/jest": "^29.5.14",
"@types/jest-axe": "^3.5.9",
"@types/lodash": "^4.17.13",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-transition-group": "^4.4.11",
"@types/resize-observer-browser": "^0.1.11",
"@types/rimraf": "^4.0.5",
"@types/signale": "^1",
"@types/yargs": "^17.0.33",
"babel-loader": "^9.2.1",
"chalk": "^5.3.0",
"css-loader": "^7.1.2",
"esbuild": "^0.24.0",
"esbuild-jest": "^0.5.0",
"eslint": "^9.14.0",
"eslint-config-mantine": "^4.0.3",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"gh-pages": "^6.2.0",
"hash-css-selector": "^1.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"mantine-docgen-script": "^1.3.1",
"new-github-release-url": "^2.0.0",
"next": "14.2.12",
"open": "^10.1.0",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"react-dom": "^18.3.1",
"react-virtuoso": "^4.12.0",
"rimraf": "^6.0.1",
"rollup": "^4.24.4",
"rollup-plugin-banner2": "^1.3.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"signale": "^1.4.0",
"simple-git": "^3.27.0",
"storybook": "^8.4.2",
"storybook-dark-mode": "^4.0.2",
"style-loader": "^4.0.0",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"syncpack": "^13.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tsx": "^4.19.2",
"typescript": "5.6.3",
"typescript-eslint": "^8.13.0",
"version-next": "^1.0.2",
"webpack": "^5.96.1",
"wrangler": "^3.84.1",
"yargs": "^17.7.2"
},
"resolutions": {
"prosemirror-model": "1.18.1",
"@babel/core": "7.26.0"
}
}