-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
192 lines (192 loc) · 6.44 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
{
"name": "gazebo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "yarn start",
"start": "vite --host",
"build": "tsc -b && vite build",
"test": "vitest run --config ./vitest.config.mjs",
"test:changed": "vitest run --changed --config ./vitest.config.mjs",
"test:watch": "vitest watch --changed --config ./vitest.config.mjs",
"test:ci": "vitest run --config ./vitest.config.mjs --coverage",
"preview-coverage": "npx vite preview --open --outDir coverage",
"lint": "eslint --fix --no-ignore --max-warnings=-1 -c .eslintrc.cjs 'src/**/*.{js,jsx,ts,tsx}'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --exit-zero-on-changes -ci",
"format-staged": "npx prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md}'",
"postinstall": "husky",
"generate-icons": "node ./scripts/icons.mjs",
"type-check": "tsc --noEmit",
"format-check": "prettier --check 'src/**/*.{js,jsx,ts,tsx,css,md}'"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md,json}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix --no-ignore --max-warnings=0 -c .eslintrc.cjs"
]
},
"dependencies": {
"@amplitude/analytics-browser": "^2.11.9",
"@hookform/resolvers": "^2.8.5",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.2",
"@sentry/react": "^8.35.0",
"@stripe/react-stripe-js": "^2.7.1",
"@stripe/stripe-js": "^3.4.0",
"@tanstack/react-query": "^4.29.5",
"@tanstack/react-queryV5": "npm:@tanstack/react-query@^5.59.15",
"@tanstack/react-table": "^8.9.1",
"@tanstack/react-virtual": "^3.8.1",
"classnames": "^2.3.1",
"copy-to-clipboard": "^3.3.3",
"cva": "npm:class-variance-authority@^0.7.0",
"d3-array": "^3.2.3",
"d3-format": "^3.1.0",
"d3-hierarchy": "^3.1.2",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-transition": "^3.0.1",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"dompurify": "^2.3.8",
"downshift": "^7.6.0",
"js-cookie": "^3.0.5",
"launchdarkly-react-client-sdk": "^3.0.9",
"lodash": "^4.17.21",
"pluralize": "^8.0.0",
"prism-react-renderer": "^1.3.1",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"qs": "^6.11.1",
"react": "^18.3.1",
"react-ace": "^12.0.0",
"react-day-picker": "^8.8.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.43.9",
"react-hot-toast": "^2.4.1",
"react-intersection-observer": "9.13.1",
"react-modal": "^3.14.4",
"react-router": "^5.3.3",
"react-router-dom": "^5.2.1",
"react-router-dom-v5-compat": "^6.15.0",
"react-use": "^17.2.4",
"recharts": "^2.12.7",
"semver": "7.5.2",
"tailwind-merge": "^2.3.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@acemarke/react-prod-sourcemaps": "^0.3.1",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@chromatic-com/storybook": "^1",
"@codecov/vite-plugin": "^1.2.1",
"@sentry/vite-plugin": "^2.22.4",
"@storybook/addon-a11y": "^8.3.4",
"@storybook/addon-actions": "^8.3.4",
"@storybook/addon-essentials": "^8.3.4",
"@storybook/addon-links": "^8.3.4",
"@storybook/blocks": "^8.3.4",
"@storybook/builder-vite": "^8.3.4",
"@storybook/manager-api": "^8.3.4",
"@storybook/node-logger": "^8.3.4",
"@storybook/react": "^8.3.4",
"@storybook/react-vite": "^8.3.4",
"@storybook/theming": "^8.3.4",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/eslint-plugin-query": "^4.38.0",
"@tanstack/react-query-devtools": "^4.29.6",
"@testing-library/dom": "10.3.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/ts-reset": "^0.4.2",
"@types/confusing-browser-globals": "^1",
"@types/d3": "7.4.3",
"@types/d3-array": "3.2.1",
"@types/d3-scale": "4.0.8",
"@types/eslint-plugin-jsx-a11y": "^6.9.0",
"@types/js-cookie": "3.0.6",
"@types/lodash": "4.17.6",
"@types/node": "^22.9.0",
"@types/prismjs": "^1.26.4",
"@types/prop-types": "15.7.12",
"@types/qs": "6.9.15",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.2.4",
"@types/react-modal": "^3.16.2",
"@types/react-router-dom": "^5.3.3",
"@types/semver": "^7",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitejs/plugin-legacy": "^5.4.3",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-istanbul": "^2.1.3",
"@vitest/eslint-plugin": "^1.1.7",
"@vitest/ui": "^2.1.3",
"autoprefixer": "^10.4.14",
"babel-preset-react-app": "^10.0.1",
"confusing-browser-globals": "^1.0.11",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-testing-library": "^6.4.0",
"http-proxy-middleware": "^2.0.7",
"husky": "^9.1.4",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.8",
"msw": "^2.4.11",
"postcss": "^8.4.31",
"prettier": "^3.3.3",
"react-test-renderer": "^18.3.1",
"remark-gfm": "^3.0.1",
"resolve-url-loader": "^5.0.0",
"storybook": "^8.4.7",
"tailwindcss": "^3.4.4",
"terser": "^5.34.1",
"typescript": "^4.9.5",
"vite": "^5.4.10",
"vite-plugin-ejs": "^1.7.0",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=22.11.0"
},
"msw": {
"workerDirectory": "public"
},
"volta": {
"node": "22.11.0",
"yarn": "4.5.3"
},
"resolutions": {
"react-refresh": "^0.14.0",
"resolve-url-loader/postcss": "8.4.31",
"micromatch": "^4.0.8",
"express": "^4.21.0",
"path-to-regexp@^1.7.0": "^1.9.0",
"path-to-regexp@^6.2.0": "^6.3.0"
},
"packageManager": "[email protected]",
"engineStrict": false
}