forked from mantinedev/mantine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
189 lines (189 loc) · 7.22 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
{
"name": "mantine-a91763c0e2",
"version": "7.5.2",
"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/@mantine/*",
"packages/@mantinex/*",
"packages/@mantine-tests/*",
"packages/@docs/*",
"docs"
],
"scripts": {
"setup": "npm run docs:docgen && esno scripts/docs/generate-css-exports",
"plop": "esno scripts/plop",
"format-changelogs": "esno scripts/docs/format-changelogs",
"changelog": "esno scripts/docs/changelog",
"storybook": "storybook dev -p 6006",
"dev": "npm run docs",
"docs": "cd docs && npm run dev",
"docs:docgen": "esno scripts/docgen",
"docs:codegen": "esno scripts/codegen",
"docs:build": "npm run docs:docgen && cd docs && npm run build",
"docs:build:alpha": "npm run docs:docgen && cd docs && npm run build:alpha",
"docs:deploy": "npm run docs:build && gh-pages -d docs/out -t true",
"docs:deploy:alpha": "npm run docs:build:alpha && esno scripts/docs/deploy-alpha",
"docs:count": "esno scripts/docs/count",
"clean": "rimraf packages/*/*/{esm,cjs,lib,dist} packages/*/*/*.tsbuildinfo packages/*/*/styles.css packages/*/*/styles.layer.css packages/@mantine/core/styles",
"build": "esno scripts/build",
"publish:package": "esno scripts/publish",
"publish:package:alpha": "esno scripts/publish --stage alpha --tag next",
"publish:package:beta": "esno scripts/publish --stage beta --tag next",
"release": "npm test && npm run clean && esno scripts/release",
"release:alpha:patch": "esno scripts/release patch --stage alpha --tag next",
"release:alpha:minor": "esno scripts/release minor --stage alpha --tag next",
"release:alpha:major": "esno 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": "esno scripts/tests/exports",
"test:conflicts": "esno scripts/tests/conflicts",
"test:validate-package-json": "esno scripts/tests/validate-package-json",
"test:validate-packages-files": "esno scripts/tests/validate-packages-files",
"jest": "jest",
"typecheck": "tsc --noEmit && cd docs && npm run typecheck",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint packages docs/src scripts --ext .ts,.tsx --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": {
"@floating-ui/react": "^0.24.8",
"@tabler/icons-react": "^2.40.0",
"@tiptap/core": "^2.1.12",
"@tiptap/extension-code-block": "^2.1.12",
"@tiptap/extension-code-block-lowlight": "^2.1.12",
"@tiptap/extension-color": "^2.1.12",
"@tiptap/extension-highlight": "^2.1.12",
"@tiptap/extension-history": "^2.1.13",
"@tiptap/extension-link": "^2.1.12",
"@tiptap/extension-placeholder": "^2.1.12",
"@tiptap/extension-subscript": "^2.1.12",
"@tiptap/extension-superscript": "^2.1.12",
"@tiptap/extension-text-align": "^2.1.12",
"@tiptap/extension-text-style": "^2.1.12",
"@tiptap/extension-underline": "^2.1.12",
"@tiptap/pm": "^2.1.12",
"@tiptap/react": "^2.1.12",
"@tiptap/starter-kit": "^2.1.12",
"chroma-js": "^2.4.2",
"clsx": "2.0.0",
"dayjs": "^1.11.10",
"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.9.0",
"klona": "^2.0.6",
"lowlight": "^3.1.0",
"react": "^18.2.0",
"react-dropzone-esm": "15.0.1",
"react-imask": "^7.1.3",
"react-number-format": "^5.3.1",
"react-remove-scroll": "^2.5.7",
"react-textarea-autosize": "8.5.3",
"react-transition-group": "4.4.5",
"recharts": "^2.10.3",
"shikiji": "^0.7.4",
"type-fest": "^3.13.1"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@hello-pangea/dnd": "^16.3.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@storybook/addon-styling-webpack": "^0.0.5",
"@storybook/react": "^7.5.3",
"@storybook/react-webpack5": "7.5.3",
"@testing-library/dom": "9.3.3",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.1.0",
"@testing-library/user-event": "14.5.1",
"@types/chroma-js": "^2.4.3",
"@types/fs-extra": "^11.0.4",
"@types/gh-pages": "^5.0.1",
"@types/jest": "^29.5.8",
"@types/jest-axe": "^3.5.8",
"@types/lodash": "^4.14.201",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"@types/react-transition-group": "^4.4.9",
"@types/resize-observer-browser": "^0.1.10",
"@types/rimraf": "^3.0.2",
"@types/signale": "^1",
"@types/yargs": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"babel-loader": "^9.1.3",
"chalk": "^5.3.0",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"esbuild": "^0.19.5",
"esbuild-jest": "^0.5.0",
"eslint": "^8.51.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-mantine": "3.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"esno": "^4.0.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"fs-extra": "^11.1.1",
"gh-pages": "^6.0.0",
"hash-css-selector": "^1.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-axe": "^8.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",
"open": "^9.1.0",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"postcss-preset-mantine": "1.12.3",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.1.0",
"react-dom": "^18.2.0",
"react-virtuoso": "^4.6.2",
"rimraf": "^5.0.5",
"rollup": "^4.4.1",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-postcss": "^4.0.2",
"signale": "^1.4.0",
"simple-git": "^3.20.0",
"storybook": "^7.5.3",
"storybook-dark-mode": "^3.0.1",
"style-loader": "^3.3.3",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"syncpack": "^11.2.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "5.3.3",
"version-next": "^1.0.2",
"webpack": "^5.89.0",
"yargs": "^17.7.2"
}
}