-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
222 lines (222 loc) · 9.55 KB
/
package.json
File metadata and controls
222 lines (222 loc) · 9.55 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
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
{
"version": "8.3.1",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "pnpm i && pnpm docs:dev",
"docs:dev": "pnpm --filter docs dev",
"docs:serve": "pnpm --filter docs serve",
"docs:create-playground": "pnpm --filter docs create-playground",
"docs:api": "NODE_OPTIONS=--max-old-space-size=4096 pnpm docs:api:build && pnpm docs:api:buildX",
"docs:api:build": "tsx ./scripts/buildApiDocs/index.ts",
"docs:api:buildX": "tsx ./docs/scripts/api/buildApi.ts",
"docs:link-check": "tsx ./docs/scripts/reportBrokenLinks.js",
"docs:build": "pnpm run release:build && pnpm --filter docs build",
"docs:typescript:formatted": "pnpm --filter docs typescript:transpile",
"docs:populate:demos": "pnpm --filter docs populate:demos",
"docs:importDocsStatic": "node scripts/importDocsStatic.mjs",
"docs:size-why": "cross-env DOCS_STATS_ENABLED=true pnpm docs:build",
"docs:deploy": "pnpm --filter docs run deploy",
"deduplicate": "pnpm dedupe",
"dataset:file-tree": "tsx ./scripts/treeDataFromFileTree.ts",
"l10n": "tsx ./scripts/l10n.ts",
"jsonlint": "node ./scripts/jsonlint.mjs",
"eslint": "eslint . --cache --report-unused-disable-directives --ext .js,.ts,.tsx --max-warnings 0",
"eslint:fix": "pnpm eslint --fix",
"eslint:ci": "eslint . --report-unused-disable-directives --ext .js,.ts,.tsx --max-warnings 0",
"markdownlint": "markdownlint-cli2 \"**/*.md\"",
"valelint": "pnpm vale sync && git ls-files | grep -h \".md$\" | xargs pnpm vale --filter='.Level==\"error\"'",
"prettier": "pretty-quick --branch master --ignore-path .eslintignore",
"prettier:all": "prettier --write . --ignore-path .eslintignore",
"prettier:check": "prettier --check . --ignore-path .eslintignore",
"proptypes": "tsx ./docs/scripts/generateProptypes.ts",
"size:snapshot": "node --max-old-space-size=2048 ./scripts/sizeSnapshot/create",
"size:why": "pnpm size:snapshot --analyze --accurateBundles",
"test": "pnpm test:unit:jsdom",
"test:jsdom": "pnpm test:unit:jsdom",
"test:unit": "pnpm test:unit:jsdom",
"test:unit:jsdom": "cross-env NODE_ENV=test TZ=UTC vitest",
"test:browser": "pnpm test:unit:browser",
"test:unit:browser": "cross-env NODE_ENV=test TZ=UTC BROWSER=true vitest",
"test:e2e": "pnpm run release:build && cd test/e2e && pnpm run start",
"test:e2e-website": "npx playwright test test/e2e-website --config test/e2e-website/playwright.config.ts",
"test:e2e-website:dev": "PLAYWRIGHT_TEST_BASE_URL=http://localhost:3001 npx playwright test test/e2e-website --config test/e2e-website/playwright.config.ts",
"test:regressions": "pnpm run release:build && cd test/regressions && pnpm run start",
"test:regressions:dev": "cd test/regressions && pnpm run start",
"test:argos": "node ./scripts/pushArgos.mjs test/regressions/screenshots/chrome",
"typescript": "lerna run --no-bail --parallel typescript",
"typescript:ci": "lerna run --concurrency 1 --no-bail --no-sort typescript",
"use-react-version": "node scripts/useReactVersion.mjs",
"use-material-ui-v6": "node scripts/useMaterialUIv6.mjs",
"use-material-ui-next": "node scripts/useMaterialUINext.mjs",
"build:codesandbox": "pnpm run release:build --concurrency 3",
"install:codesandbox": "pnpm install --no-frozen-lockfile",
"pkg-pr-new-packages": "node -e \"console.log(Object.values(require('./.codesandbox/ci.json').publishDirectory).join(' '))\"",
"pkg-pr-new-release": "pnpm dlx pkg-pr-new publish $(pnpm -s pkg-pr-new-packages) --template './examples/*' --comment=off --peerDeps",
"release:changelog": "node scripts/releaseChangelog.mjs",
"release:version": "lerna version --exact --no-changelog --no-push --no-git-tag-version --no-private",
"release:build": "lerna run --scope '@mui/*' build",
"release:publish": "pnpm publish --recursive --tag latest",
"release:publish:dry-run": "pnpm publish --recursive --tag latest --registry=\"http://localhost:4873/\"",
"release:tag": "node scripts/releaseTag.mjs",
"validate": "concurrently \"pnpm prettier && pnpm eslint\" \"pnpm proptypes\" \"pnpm docs:typescript:formatted\" \"pnpm docs:api\"",
"clean:node_modules": "rimraf --glob \"**/node_modules\"",
"clean": "pnpm -r exec rm -rf build tsconfig.build.tsbuildinfo"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@argos-ci/core": "^3.2.0",
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"@babel/plugin-transform-class-properties": "^7.27.1",
"@babel/plugin-transform-object-rest-spread": "^7.27.2",
"@babel/plugin-transform-private-methods": "^7.27.1",
"@babel/plugin-transform-private-property-in-object": "^7.27.1",
"@babel/plugin-transform-react-constant-elements": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@babel/register": "^7.27.1",
"@babel/traverse": "^7.27.1",
"@babel/types": "^7.27.1",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.0.2",
"@mui/internal-babel-plugin-display-name": "github:mui/mui-public#master&path:./packages/babel-plugin-display-name",
"@mui/internal-babel-plugin-resolve-imports": "^2.0.2",
"@mui/internal-markdown": "^2.0.5",
"@mui/internal-test-utils": "^2.0.8",
"@mui/material": "^7.0.2",
"@mui/monorepo": "github:mui/material-ui#adb0a76b09080d02f899789266336b297850d86b",
"@mui/utils": "^7.0.2",
"@next/eslint-plugin-next": "15.3.2",
"@octokit/plugin-retry": "^7.2.1",
"@octokit/rest": "^21.1.1",
"@playwright/test": "^1.52.0",
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.20.7",
"@types/chai-dom": "^1.11.3",
"@types/fs-extra": "^11.0.4",
"@types/karma": "^6.3.9",
"@types/lodash": "^4.17.16",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.18",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@types/requestidlecallback": "^0.3.7",
"@types/sinon": "^17.0.4",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/browser": "^3.1.3",
"@vitest/coverage-v8": "^3.1.3",
"@vvago/vale": "^3.11.2",
"autoprefixer": "^10.4.21",
"axe-core": "4.10.3",
"babel-loader": "^10.0.0",
"babel-plugin-istanbul": "^7.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-optimize-clsx": "^2.6.2",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-search-and-replace": "^1.1.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-plugin-transform-replace-expressions": "^0.2.0",
"chai": "^4.5.0",
"chai-dom": "^1.12.1",
"compression-webpack-plugin": "^11.1.0",
"concurrently": "^9.1.2",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"danger": "^13.0.4",
"date-fns-jalali-v2": "npm:date-fns-jalali@2.30.0-0",
"date-fns-v2": "npm:date-fns@2.30.0",
"esbuild": "^0.25.4",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-webpack": "^0.13.10",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.14",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-material-ui": "workspace:^",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-testing-library": "^7.2.0",
"fast-glob": "^3.3.3",
"format-util": "^1.0.5",
"fs-extra": "^11.3.0",
"glob-gitignore": "^1.0.15",
"globby": "^14.1.0",
"html-webpack-plugin": "^5.6.3",
"jsdom": "26.1.0",
"jss": "^10.10.0",
"jss-plugin-template": "^10.10.0",
"jss-rtl": "^0.3.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-parallel": "^0.3.1",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.1",
"lerna": "^8.2.2",
"lodash": "^4.17.21",
"magic-string": "^0.30.17",
"markdownlint-cli2": "^0.18.1",
"mocha": "^11.3.0",
"moment": "^2.30.1",
"moment-timezone": "^0.5.48",
"null-loader": "^4.0.1",
"nyc": "^17.1.0",
"prettier": "^3.5.3",
"pretty-quick": "^4.1.1",
"process": "^0.11.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remark": "^15.0.1",
"rimraf": "^6.0.1",
"serve": "^14.2.4",
"sinon": "^20.0.0",
"stream-browserify": "^3.0.0",
"string-replace-loader": "^3.1.0",
"terser-webpack-plugin": "^5.3.14",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"unist-util-visit": "^5.0.0",
"util": "^0.12.5",
"vite": "^6.3.5",
"vitest": "3.1.3",
"vitest-fail-on-console": "^0.7.1",
"webpack": "^5.99.8",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"yargs": "^17.7.2"
},
"resolutions": {},
"packageManager": "pnpm@10.11.0",
"engines": {
"pnpm": "10.11.0"
},
"pnpm": {
"patchedDependencies": {
"karma-mocha@2.0.1": "patches/karma-mocha@2.0.1.patch"
},
"onlyBuiltDependencies": [
"@swc/core",
"@vvago/vale",
"core-js",
"esbuild",
"nx",
"sharp"
]
}
}