-
-
Notifications
You must be signed in to change notification settings - Fork 276
/
package.json
85 lines (85 loc) · 2.38 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
{
"name": "regex-vis",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.7",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@sentry/react": "^8.17.0",
"@vercel/analytics": "^1.0.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"i18next": "^21.6.16",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-http-backend": "^1.4.0",
"immer": "^9.0.6",
"jotai": "^2.9.0",
"jotai-immer": "^0.4.1",
"nanoid": "^3.1.16",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-i18next": "^11.16.7",
"react-router-dom": "^6.3.0",
"react-use": "^17.4.0",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.0",
"usehooks-ts": "^3.1.0",
"vite": "^5.3.3",
"vite-tsconfig-paths": "^4.3.2",
"web-vitals": "^3.3.0",
"zod": "^3.23.8"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@antfu/eslint-config": "^2.22.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/node": "^18.0.0",
"@types/react": "^18.0.11",
"@types/react-dom": "^18.0.5",
"@types/styled-jsx": "^2.2.8",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/ui": "^2.0.5",
"autoprefixer": "^10.4.19",
"eslint": "^9.7.0",
"eslint-plugin-react-hooks": "5.1.0-rc-df5f2736-20240712",
"eslint-plugin-react-refresh": "^0.4.8",
"jsdom": "^24.1.1",
"postcss": "^8.4.39",
"vite-plugin-ejs": "^1.7.0",
"vitest": "^2.0.5",
"vitest-canvas-mock": "^0.3.3"
}
}