forked from recharts/recharts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
197 lines (197 loc) · 7.22 KB
/
package.json
File metadata and controls
197 lines (197 loc) · 7.22 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
{
"name": "recharts",
"version": "3.7.0",
"description": "React charts",
"main": "lib/index.js",
"module": "es6/index.js",
"jsnext:main": "es6/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"workspaces": [
"www"
],
"files": [
"*.md",
"es6",
"lib",
"umd",
"types"
],
"keywords": [
"react",
"reactjs",
"chart",
"react-component"
],
"scripts": {
"prepare": "husky",
"prebuild": "npm run omnidoc && npm run lint",
"build": "npm run build-types && npm run build-cjs && npm run build-es6 && npm run build-umd && npm run test-build-output",
"build-cjs": "rimraf lib && cross-env NODE_ENV=commonjs babel ./src -d lib --extensions '.js,.ts,.tsx'",
"build-es6": "rimraf es6 && cross-env NODE_ENV=es6 babel ./src -d es6 --extensions '.js,.ts,.tsx'",
"build-umd": "rimraf umd && cross-env NODE_ENV=production webpack -o umd",
"build-types": "rimraf types && npm run tsc",
"check-types": "tsc --noEmit && npm run check-types-test && npm run check-types-storybook && npm run check-types-website",
"check-types-test": "tsc --project test/tsconfig.json",
"check-types-storybook": "tsc --project storybook/tsconfig.json",
"check-types-website": "tsc --project www/tsconfig.json",
"check-playwright-versions": "node scripts/check-playwright-versions.mjs",
"test": "vitest run --config vitest.config.mts --project unit:*",
"test-lib": "vitest run --config vitest.config.mts --project unit:lib",
"test-website": "vitest run --config vitest.config.mts --project unit:website",
"test-coverage": "vitest run --config vitest.config.mts --coverage --project unit:*",
"test-omnidoc": "vitest run --project unit:omnidoc --config vitest.config.mts",
"test-exports": "vitest run scripts/verify-exports.test.ts",
"omnidoc": "npx tsx omnidoc/generateApiDoc.ts && npx tsx omnidoc/generateStorybookArgs.ts",
"test-mutation": "stryker run",
"test-watch": "vitest --config vitest.config.mts --project unit:*",
"lint": "eslint .",
"autofix": "eslint . --fix",
"analyse": "cross-env NODE_ENV=analyse webpack -o umd/Recharts.js",
"trace-bundle": "npx tsx scripts/trace-bundle.ts",
"generate-bundle-data": "npx tsx scripts/generate-bundle-data.ts",
"prettier": "prettier . --write",
"tsc": "tsc",
"storybook-doctor": "npx storybook doctor --config-dir storybook",
"storybook": "npx storybook dev -p 6006 -c storybook",
"build-storybook": "npx storybook build -o storybook/public -c storybook",
"chromatic": "npx chromatic",
"test-build-output": "vitest run --project build-output --config vitest.config.mts",
"test-storybook": "vitest --config vitest.config.mts --project storybook",
"test-vr:prepare": "npm run build && docker compose up -d --build",
"test-vr": "docker compose run --rm test-vr playwright-test",
"test-vr:update": "docker compose run --rm test-vr playwright-test --update-snapshots",
"test-vr:ui": "docker compose run -p 8080:8080 --rm test-vr playwright-test --ui --ui-host=0.0.0.0 --ui-port=8080",
"test-vr:report": "npx playwright show-report test-vr/playwright-report",
"bundlewatch": "bundlewatch --config .bundlewatch.config.json"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/recharts/recharts.git"
},
"author": {
"name": "recharts group"
},
"bugs": {
"url": "https://github.com/recharts/recharts/issues"
},
"homepage": "https://github.com/recharts/recharts",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-is": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.0 || 2.x.x",
"clsx": "^2.1.1",
"decimal.js-light": "^2.5.1",
"es-toolkit": "^1.39.3",
"eventemitter3": "^5.0.1",
"immer": "^10.1.1",
"react-redux": "8.x.x || 9.x.x",
"reselect": "5.1.1",
"tiny-invariant": "^1.3.3",
"use-sync-external-store": "^1.2.2",
"victory-vendor": "^37.0.2"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@babel/runtime": "^7.26.10",
"@chromatic-com/storybook": "^4.0.1",
"@codecov/bundle-analyzer": "^1.9.1",
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.35.0",
"@playwright/experimental-ct-react": "1.58.2",
"@recharts/devtools": "^0.0.8",
"@reduxjs/toolkit": "^1.9.7",
"@stackblitz/sdk": "^1.11.0",
"@storybook/addon-a11y": "^9.0.17",
"@storybook/addon-docs": "^9.0.17",
"@storybook/addon-links": "^9.0.17",
"@storybook/addon-onboarding": "^9.0.17",
"@storybook/addon-vitest": "^9.0.17",
"@storybook/builder-vite": "^9.0.17",
"@storybook/icons": "^1.2.12",
"@storybook/react-vite": "^9.0.17",
"@stryker-mutator/typescript-checker": "^9.2.0",
"@stryker-mutator/vitest-runner": "^9.2.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/d3-interpolate": "^3.0.4",
"@types/d3-shape": "^3.1.6",
"@types/d3-time-format": "^4.0.3",
"@types/node": "24.x.x",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-is": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "^3.2.3",
"babel-loader": "^9.1.3",
"babel-plugin-dev-expression": "^0.2.3",
"babel-plugin-transform-define": "^2.1.4",
"browserslist": "^4.23.2",
"bundlewatch": "^0.4.1",
"chromatic": "^11.5.6",
"cross-env": "^7.0.3",
"d3-scale-chromatic": "^3.1.0",
"d3-time": "^3.1.0",
"d3-time-format": "^4.1.0",
"diff": "^8.0.2",
"eslint": "^9.35.0",
"eslint-config-airbnb-extended": "^2.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-perf": "^3.3.3",
"eslint-plugin-storybook": "^9.1.5",
"glob": "^11.0.0",
"globals": "^16.3.0",
"husky": "^9.1.1",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.7",
"marked": "^17.0.1",
"playwright": "1.58.2",
"prettier": "^3.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"react-redux": "^8.1.3",
"rimraf": "^6.0.1",
"rollup": "^4.40.1",
"storybook": "^9.0.17",
"terser": "^5.46.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-morph": "^27.0.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.42.0",
"update-browserslist-db": "^1.1.0",
"vitest": "^3.2.3",
"vitest-axe": "^0.1.0",
"webpack": "^5.93.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=18"
},
"license": "MIT"
}