-
Notifications
You must be signed in to change notification settings - Fork 215
Expand file tree
/
Copy pathpackage.json
More file actions
501 lines (501 loc) · 24 KB
/
package.json
File metadata and controls
501 lines (501 loc) · 24 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
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
{
"name": "@w.ui/wui-react",
"version": "3.6.2",
"type": "module",
"readme": "NPM_README.md",
"description": "pro-react-admin components library",
"private": false,
"files": [
"dist-lib"
],
"main": "./dist-lib/pro-react-components.umd.js",
"module": "./dist-lib/pro-react-components.es.js",
"types": "./dist-lib/index.d.ts",
"exports": {
".": {
"types": "./dist-lib/index.d.ts",
"import": "./dist-lib/pro-react-components.es.js",
"require": "./dist-lib/pro-react-components.umd.js"
},
"./core": {
"types": "./dist-lib/entries/core.d.ts",
"import": "./dist-lib/entries/core.es.js",
"require": "./dist-lib/entries/core.cjs.js"
},
"./stateful": {
"types": "./dist-lib/entries/stateful.d.ts",
"import": "./dist-lib/entries/stateful.es.js",
"require": "./dist-lib/entries/stateful.cjs.js"
},
"./stateless": {
"types": "./dist-lib/entries/stateless.d.ts",
"import": "./dist-lib/entries/stateless.es.js",
"require": "./dist-lib/entries/stateless.cjs.js"
},
"./style.css": "./dist-lib/style.css"
},
"keywords": [
"React",
"JSX",
"Webpack",
"React Router",
"ESLint",
"TSX",
"Vite",
"Bit",
"Bit.dev",
"Bit.cloud",
"TypeScript",
"Ant Design",
"Admin Dashboard"
],
"homepage": "https://wkylin.github.io/pro-react-admin",
"sideEffects": [
"src/styles/**",
"**/*.css",
"**/*.less"
],
"scripts": {
"devtools": "react-devtools",
"prebuild": "npm run generate:dependencies",
"optimize:media": "node scripts/optimize-media.mjs",
"preprod:serve": "npm run optimize:media",
"prebuild:production": "node -e \"const cp=require('child_process'); const isCI=process.env.CI==='true'||process.env.CI==='1'||process.env.GITHUB_ACTIONS==='true'||process.env.VERCEL==='1'; const force=process.env.OPTIMIZE_MEDIA==='1'||process.env.OPTIMIZE_MEDIA==='true'; if(isCI&&!force){console.log('[optimize:media] CI detected, skipping. Set OPTIMIZE_MEDIA=1 to force.'); process.exit(0);} cp.execSync('npm run optimize:media',{stdio:'inherit'});\"",
"prebuild:production:zip": "node -e \"const cp=require('child_process'); const isCI=process.env.CI==='true'||process.env.CI==='1'||process.env.GITHUB_ACTIONS==='true'||process.env.VERCEL==='1'; const force=process.env.OPTIMIZE_MEDIA==='1'||process.env.OPTIMIZE_MEDIA==='true'; if(isCI&&!force){console.log('[optimize:media] CI detected, skipping. Set OPTIMIZE_MEDIA=1 to force.'); process.exit(0);} cp.execSync('npm run optimize:media',{stdio:'inherit'});\"",
"pre:run": "install-changed",
"ci:quality": "npm run lint:fix && npm run test",
"prepare": "husky install",
"dev": "npm run start",
"start": "npm run pre:run && cross-env BUILD_GOAL=development NODE_ENV=development NODE_OPTIONS=--trace-deprecation webpack serve --config ./webpack/webpack.dev.js --stats-error-details",
"start:projectA": "npm run pre:run && cross-env PROJECT=projectA BUILD_GOAL=development NODE_ENV=development NODE_OPTIONS=--trace-deprecation webpack serve --config ./webpack/webpack.dev.js --stats-error-details",
"start:projectB": "npm run pre:run && cross-env PROJECT=projectB BUILD_GOAL=development NODE_ENV=development NODE_OPTIONS=--trace-deprecation webpack serve --config ./webpack/webpack.dev.js --stats-error-details",
"start:mf:shell": "npm run pre:run && cross-env PROJECT=shell MFE_ROLE=host PORT=8080 MFE_PROJECTA_URL=http://localhost:8081/remoteEntry.js MFE_PROJECTB_URL=http://localhost:8082/remoteEntry.js BUILD_GOAL=development NODE_ENV=development NODE_OPTIONS=--trace-deprecation webpack serve --config ./webpack/webpack.dev.js --stats-error-details",
"start:mf:projectA": "npm run pre:run && cross-env PROJECT=projectA MFE_ROLE=remote PORT=8081 BUILD_GOAL=development NODE_ENV=development NODE_OPTIONS=--trace-deprecation webpack serve --config ./webpack/webpack.dev.js --stats-error-details",
"start:mf:projectB": "npm run pre:run && cross-env PROJECT=projectB MFE_ROLE=remote PORT=8082 BUILD_GOAL=development NODE_ENV=development NODE_OPTIONS=--trace-deprecation webpack serve --config ./webpack/webpack.dev.js --stats-error-details",
"dev:vite": "vite --host --config vite.config.ts",
"dev:vite:projectA": "cross-env PROJECT=projectA vite --host --config vite.config.ts",
"dev:vite:projectB": "cross-env PROJECT=projectB vite --host --config vite.config.ts",
"dev:faker": "concurrently -r \"npm run start\" \"npm run faker\"",
"build:production": "cross-env SENTRY_SOURCE_MAP=map BUILD_GOAL=production NODE_ENV=production NODE_OPTIONS=--trace-deprecation webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:production:zip": "cross-env DIST_ZIP=1 SENTRY_SOURCE_MAP=map BUILD_GOAL=production NODE_ENV=production NODE_OPTIONS=--trace-deprecation webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:production:projectA": "cross-env PROJECT=projectA SENTRY_SOURCE_MAP=map BUILD_GOAL=production NODE_ENV=production NODE_OPTIONS=--trace-deprecation webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:production:projectB": "cross-env PROJECT=projectB SENTRY_SOURCE_MAP=map BUILD_GOAL=production NODE_ENV=production NODE_OPTIONS=--trace-deprecation webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:mf:shell": "cross-env PROJECT=shell MFE_ROLE=host PUBLIC_URL=/ SENTRY_SOURCE_MAP=no BUILD_GOAL=production NODE_ENV=production NODE_OPTIONS=--trace-deprecation webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:mf:projectA": "cross-env PROJECT=projectA MFE_ROLE=remote PUBLIC_URL=/projectA/ SENTRY_SOURCE_MAP=no BUILD_GOAL=production NODE_ENV=production NODE_OPTIONS=--trace-deprecation webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:mf:projectB": "cross-env PROJECT=projectB MFE_ROLE=remote PUBLIC_URL=/projectB/ SENTRY_SOURCE_MAP=no BUILD_GOAL=production NODE_ENV=production NODE_OPTIONS=--trace-deprecation webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:mf:projectA:standalone": "cross-env PROJECT=projectA MFE_ROLE=remote PUBLIC_URL=/ SENTRY_SOURCE_MAP=no BUILD_GOAL=production NODE_ENV=production NODE_OPTIONS=--trace-deprecation webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:mf:projectB:standalone": "cross-env PROJECT=projectB MFE_ROLE=remote PUBLIC_URL=/ SENTRY_SOURCE_MAP=no BUILD_GOAL=production NODE_ENV=production NODE_OPTIONS=--trace-deprecation webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:mf:vercel": "npm run build:mf:shell && npm run build:mf:projectA && npm run build:mf:projectB && node scripts/prepare-vercel-mfe.mjs",
"vercel-build": "npm run build:mf:vercel",
"build:production:zip:projectA": "cross-env PROJECT=projectA DIST_ZIP=1 SENTRY_SOURCE_MAP=map BUILD_GOAL=production NODE_ENV=production NODE_OPTIONS=--trace-deprecation webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:production:zip:projectB": "cross-env PROJECT=projectB DIST_ZIP=1 SENTRY_SOURCE_MAP=map BUILD_GOAL=production NODE_ENV=production NODE_OPTIONS=--trace-deprecation webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:test": "cross-env SENTRY_SOURCE_MAP=no BUILD_GOAL=test NODE_ENV=production webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:dev": "cross-env SENTRY_SOURCE_MAP=no BUILD_GOAL=dev NODE_ENV=production webpack --config ./webpack/webpack.prod.js --stats-error-details",
"build:vite": "vite build --config vite.config.ts",
"build:vite:projectA": "cross-env PROJECT=projectA vite build --config vite.config.ts",
"build:vite:projectB": "cross-env PROJECT=projectB vite build --config vite.config.ts",
"build:vite:zip": "cross-env ZIP_DIST=1 vite build --config vite.config.ts",
"build:vite:projectA:zip": "cross-env PROJECT=projectA ZIP_DIST=1 vite build --config vite.config.ts",
"build:vite:projectB:zip": "cross-env PROJECT=projectB ZIP_DIST=1 vite build --config vite.config.ts",
"build:vite:sentry": "cross-env SENTRY_DISABLE_TELEMETRY=1 SENTRY_SOURCE_MAP=map vite build --config vite.config.ts",
"preview:vite": "vite preview --host --config vite.config.ts",
"preview:vite:projectA": "cross-env PROJECT=projectA vite preview --host --config vite.config.ts",
"preview:vite:projectB": "cross-env PROJECT=projectB vite preview --host --config vite.config.ts",
"prod:serve": "cross-env SENTRY_SOURCE_MAP=no BUILD_SERVE=prod BUILD_GOAL=production NODE_ENV=production webpack --config ./webpack/webpack.prod.js --stats-error-details",
"prod:serve:projectA": "cross-env PROJECT=projectA SENTRY_SOURCE_MAP=no BUILD_SERVE=prod BUILD_GOAL=production NODE_ENV=production webpack --config ./webpack/webpack.prod.js --stats-error-details",
"prod:serve:projectB": "cross-env PROJECT=projectB SENTRY_SOURCE_MAP=no BUILD_SERVE=prod BUILD_GOAL=production NODE_ENV=production webpack --config ./webpack/webpack.prod.js --stats-error-details",
"prod:serve:debug": "cross-env DEBUG_PROD=1 npm run prod:serve",
"dev:serve": "cross-env SENTRY_SOURCE_MAP=no BUILD_SERVE=prod BUILD_GOAL=dev NODE_ENV=production webpack --config ./webpack/webpack.prod.js --stats-error-details",
"test:serve": "cross-env SENTRY_SOURCE_MAP=no BUILD_SERVE=prod BUILD_GOAL=test NODE_ENV=production webpack --config ./webpack/webpack.prod.js --stats-error-details",
"analyze:build": "cross-env SENTRY_SOURCE_MAP=no BUILD_GOAL=production NODE_ENV=production USE_ANALYZE=1 webpack --config ./webpack/webpack.prod.js --stats-error-details --profile --json=compilation-stats.json",
"analyze:stats": "npx webpack --profile --json=stats.json",
"clean:dist:current": "node scripts/dist-tools.mjs clean",
"serve:dist": "node scripts/dist-tools.mjs serve --port 5000",
"serve:dist:test": "node scripts/dist-tools.mjs serve --port 7000",
"serve:prod": "npm run clean:dist:current && npm run prod:serve && npm run serve:dist",
"serve:dev": "npm run clean:dist:current && npm run dev:serve && npm run serve:dist",
"serve:test": "npm run clean:dist:current && npm run test:serve && npm run serve:dist:test",
"http:dev": "npm run clean:dist:current && npm run dev:serve && npm run http-server",
"http:prod": "npm run clean:dist:current && npm run prod:serve && npm run http-server",
"http:test": "npm run clean:dist:current && npm run test:serve && npm run http-server",
"http-server": "node scripts/dist-tools.mjs http -- -p 9090 --proxy https://my-json-server.typicode.com -o --cors --log-ip --gzip",
"lighthouse": "node scripts/run-lighthouse.mjs",
"faker": "nodemon faker/index.js",
"generate:dependencies": "node scripts/generate-dependencies.cjs",
"test": "npm run test:jest && npm run test:coverage",
"test:jest": "jest",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test --config=playwright.config.ts",
"test:watch": "jest --watch",
"test:report": "npx playwright show-report",
"update:yarn": "yarn upgrade --latest",
"update:npm": "ncu -u && npm install",
"lint:fix": "npm run eslint:fix && npm run stylelint:fix && npm run prettier:fix",
"lint": "npm run eslint && npm run stylelint && npm run prettier:check",
"lint:errors": "eslint --cache --quiet \"src/**/*.{js,jsx,ts,tsx}\"",
"stylelint": "stylelint \"src/**/*.(less|css|scss)\" --custom-syntax postcss-less",
"stylelint:fix": "stylelint \"src/**/*.(less|css|scss)\" --fix --custom-syntax postcss-less",
"prettier:check": "prettier --check \"src/**/*\" --end-of-line auto --ignore-unknown",
"prettier:fix": "prettier --write \"src/**/*\" --end-of-line auto --ignore-unknown",
"prettier:fix:all": "prettier --write . --end-of-line auto --ignore-unknown",
"eslint": "eslint --cache \"src/**/*.{js,jsx,ts,tsx}\"",
"eslint:fix": "eslint --fix --cache \"src/**/*.{js,jsx,ts,tsx}\"",
"markdownlint": "markdownlint *.md",
"markdownlint:fix": "markdownlint --fix *.md",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"push:tags": "git push --follow-tags origin main && npm publish",
"process": "node webpack/process",
"predeploy": "npm run build:production",
"deploy": "node scripts/deploy-gh.js",
"deploy:only": "gh-pages -d dist",
"clean:lock": "rimraf package-lock.json yarn.lock pnpm-lock.yaml",
"clean:dist": "rimraf ./dist",
"clean:modules": "rimraf node_modules",
"js-analyzer": "js-analyzer --root ./",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o storybook-static",
"postbuild-storybook": "node ./scripts/add-storybook-base.cjs",
"serve:storybook": "serve storybook-static -p 6007",
"serve:storybook:http": "cd storybook-static && npx http-server -p 6006 -o",
"build:lib": "vite build -c vite.config.lib.ts",
"build:lib:entries": "vite build -c vite.config.lib.entries.ts",
"prepare:lib:publish": "node scripts/prepare-lib-publish.mjs",
"build:lib:analyze": "cross-env USE_ANALYZE=1 vite build -c vite.config.lib.ts",
"analyze:lib": "cross-env USE_ANALYZE=1 vite build -c vite.config.lib.ts",
"check:components-index": "node scripts/validate-components-index.mjs",
"prepublishOnly": "npm run build:lib && npm run build:lib:entries && npm run prepare:lib:publish",
"pub": "echo 'Please ensure you are logged in to npm: npm login' && npm run prepublishOnly && npm publish ./dist-lib --access public",
"pub:beta": "npm run prepublishOnly && npm publish dist-lib --tag beta --access public",
"scanner": "npm run test && node scripts/run-sonar-scanner.cjs",
"depcheck": "node scripts/depcheck.mjs",
"clean": "npm prune && rimraf node_modules/.cache",
"fresh": "npm run clean && rimraf node_modules package-lock.json && npm install",
"nuke": "rimraf node_modules package-lock.json yarn.lock pnpm-lock.yaml && npm install"
},
"author": "wkylin",
"contributors": [
{
"name": "wkylin",
"email": "wkylin.w@gmail.com",
"url": "https://github.com/orgs/aresray/teams"
}
],
"bugs": {
"url": "https://github.com/wkylin/pro-react-admin/issues",
"email": "wkylin.w@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-decorators": "^7.29.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-object-rest-spread": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@eslint/compat": "^2.0.3",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.2",
"@koa/cors": "^5.0.0",
"@playwright/test": "^1.58.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
"@sentry/vite-plugin": "^5.1.1",
"@sentry/webpack-plugin": "^5.1.1",
"@storybook/addon-a11y": "^10.2.16",
"@storybook/addon-docs": "^10.2.16",
"@storybook/addon-links": "^10.2.16",
"@storybook/builder-vite": "^10.2.16",
"@storybook/csf-plugin": "^10.2.16",
"@storybook/react-vite": "^10.2.16",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.2.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.2.0",
"@types/jest": "^30.0.0",
"@types/jspdf": "^2.0.0",
"@types/lodash": "^4.17.24",
"@types/node": "^25.3.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.183.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-react": "^5.1.4",
"antd-dayjs-webpack-plugin": "^1.0.6",
"archiver": "^7.0.1",
"babel-jest": "^30.2.0",
"babel-loader": "^10.1.0",
"babel-plugin-react-compiler": "latest",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-remove-debugger": "^6.9.4",
"better-mock": "^0.3.7",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"circular-dependency-plugin": "^5.2.2",
"code-inspector-plugin": "^1.4.3",
"commitizen": "4.3.1",
"compression-webpack-plugin": "^12.0.0",
"concurrently": "^9.2.1",
"conventional-changelog-cli": "^5.0.0",
"copy-webpack-plugin": "^14.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^8.0.0",
"cz-conventional-changelog": "^3.3.0",
"depcheck": "^1.4.7",
"dotenv": "^17.3.1",
"dotenv-webpack": "^9.0.0",
"esbuild-jest": "0.4.0",
"esbuild-loader": "^4.4.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "latest",
"eslint-plugin-storybook": "^10.2.16",
"eslint-plugin-unicorn": "^63.0.0",
"eslint-webpack-plugin": "^5.0.3",
"filemanager-webpack-plugin": "^9.0.1",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"gh-pages": "^6.3.0",
"glob": "^13.0.6",
"globals": "^17.4.0",
"html-minimizer-webpack-plugin": "^6.0.0",
"html-webpack-plugin": "^5.6.6",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"image-minimizer-webpack-plugin": "^5.0.0",
"install-pkg-lock": "^1.0.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"koa": "^3.1.2",
"koa-bodyparser": "^4.4.1",
"koa-router": "^14.0.0",
"lighthouse": "^13.0.3",
"lint-staged": "^16.3.2",
"markdownlint-cli": "^0.48.0",
"mini-css-extract-plugin": "^2.10.0",
"node-polyfill-webpack-plugin": "4.1.0",
"nodemon": "^3.1.14",
"npm-check-updates": "^19.6.3",
"portfinder": "^1.0.38",
"postcss": "^8.5.8",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^8.2.1",
"postcss-normalize": "^13.0.1",
"postcss-preset-env": "^11.2.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"purgecss-webpack-plugin": "^8.0.0",
"react-refresh": "^0.18.0",
"rimraf": "^6.1.3",
"rollup-plugin-visualizer": "^7.0.1",
"serve": "^14.2.6",
"sharp": "^0.34.5",
"shiki": "^4.0.2",
"sonar-scanner": "^3.1.0",
"standard": "^17.1.2",
"standard-version": "^9.5.0",
"storybook": "^10.2.16",
"style-loader": "^4.0.0",
"stylelint": "^17.4.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^5.9.3",
"video.js": "^8.23.7",
"vite": "^7.3.1",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-static-copy": "^3.2.0",
"vite-plugin-svgr": "^4.5.0",
"web-streams-polyfill": "^4.2.0",
"webpack": "^5.105.4",
"webpack-bundle-analyzer": "^5.2.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3",
"webpack-merge": "^6.0.1",
"webpackbar": "^7.0.0"
},
"dependencies": {
"@ant-design/cssinjs": "^2.1.2",
"@ant-design/icons": "^6.1.0",
"@ant-design/maps": "^1.0.8",
"@codesandbox/sandpack-react": "^2.20.0",
"@emotion/is-prop-valid": "^1.4.0",
"@loadable/component": "^5.16.7",
"@number-flow/react": "^0.6.0",
"@react-spring/core": "^10.0.3",
"@react-spring/web": "^10.0.3",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@sentry/react": "^10.42.0",
"@sentry/tracing": "^7.120.4",
"@smakss/react-scroll-direction": "^4.3.1",
"@tiptap/extension-code-block-lowlight": "^3.20.1",
"@tiptap/extension-image": "^3.20.1",
"@tiptap/extension-link": "^3.20.1",
"@tiptap/extension-placeholder": "^3.20.1",
"@tiptap/extension-table": "^3.20.1",
"@tiptap/extension-table-cell": "^3.20.1",
"@tiptap/extension-table-header": "^3.20.1",
"@tiptap/extension-table-row": "^3.20.1",
"@tiptap/extension-task-item": "^3.20.1",
"@tiptap/extension-task-list": "^3.20.1",
"@tiptap/extension-text-align": "^3.20.1",
"@tiptap/react": "^3.20.1",
"@tiptap/starter-kit": "^3.20.1",
"@tsparticles/engine": "^3.9.1",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.9.1",
"@uiw/react-markdown-preview": "^5.1.5",
"@uiw/react-md-editor": "^4.0.11",
"@uiw/react-signature": "^1.3.4",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"@xyflow/react": "^12.10.1",
"antd": "^6.3.2",
"axios": "^1.13.6",
"canvas-confetti": "^1.9.4",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"core-js": "^3.48.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.19",
"echarts": "^6.0.0",
"esbuild": "^0.27.3",
"framer-motion": "^12.35.2",
"fuse.js": "^7.1.0",
"highlight.js": "^11.11.1",
"hls.js": "^1.6.15",
"html-to-image": "^1.11.13",
"html2canvas": "^1.4.1",
"i18next": "^25.8.15",
"i18next-browser-languagedetector": "^8.2.1",
"immer": "^11.1.4",
"isomorphic-dompurify": "^3.0.0",
"jsencrypt": "^3.5.4",
"jspdf": "^4.2.0",
"katex": "^0.16.38",
"less": "^4.5.1",
"lodash": "^4.17.23",
"lodash-es": "^4.17.23",
"lowlight": "^3.3.0",
"lucide-react": "^0.577.0",
"maath": "^0.10.8",
"marked": "^17.0.4",
"markmap-common": "^0.18.9",
"markmap-lib": "^0.18.12",
"markmap-view": "^0.18.12",
"mermaid": "^11.13.0",
"motion": "^12.35.2",
"pinyin-pro": "^3.28.0",
"popmotion": "^11.0.5",
"postcss-less": "^6.0.0",
"prism-react-renderer": "^2.4.1",
"prop-types": "^15.8.1",
"qrcode": "^1.5.4",
"qs": "^6.15.0",
"react": "^19.2.4",
"react-barcode": "^1.6.1",
"react-dom": "^19.2.4",
"react-draggable": "^4.5.0",
"react-fast-marquee": "^1.6.5",
"react-i18next": "^16.5.6",
"react-markdown": "^10.1.0",
"react-medium-image-zoom": "^5.4.1",
"react-parallax-tilt": "^1.7.320",
"react-pdf": "^10.4.1",
"react-responsive-masonry": "^2.7.1",
"react-router-dom": "^7.13.1",
"react-sticky-box": "^2.0.5",
"react-syntax-highlighter": "^16.1.1",
"react-to-print": "^3.3.0",
"react-window": "^2.2.7",
"react-zoom-pan-pinch": "^3.7.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remove-markdown": "^0.6.3",
"resize-observer-polyfill": "^1.5.1",
"screenfull": "^6.0.2",
"three": "^0.183.2",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2",
"use-debounce": "^10.1.0",
"zustand": "^5.0.11"
},
"overrides": {
"tmp": "0.2.5",
"zustand": "^5.0.11",
"@antv/l7": "2.23.3-beta.3",
"@antv/l7-component": "2.23.3-beta.3",
"@antv/l7-core": "2.23.3-beta.3",
"@antv/l7-layers": "2.23.3-beta.3",
"@antv/l7-map": "2.23.3-beta.3",
"@antv/l7-maps": "2.23.3-beta.3",
"@antv/l7-renderer": "2.23.3-beta.3",
"@antv/l7-scene": "2.23.3-beta.3",
"@antv/l7-source": "2.23.3-beta.3",
"@antv/l7-utils": "2.23.3-beta.3",
"@microsoft/api-extractor": {
"minimatch": "10.2.3"
},
"commitizen": {
"lodash": "4.17.23"
},
"tunnel-rat": {
"zustand": "^5.0.11"
},
"@xyflow/react": {
"zustand": "^5.0.9"
}
},
"engines": {
"node": ">=20.12.1",
"npm": ">=10.5.0",
"yarn": ">=1.22.10"
},
"packageManager": "npm@11.11.0",
"browserslist": {
"production": [
">0.2%",
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 safari versions"
],
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 safari versions"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged",
"post-merge": "install-changed",
"post-commit": "node webpack/check-version.js"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}