-
-
Notifications
You must be signed in to change notification settings - Fork 285
/
Copy pathpackage.json
97 lines (97 loc) · 2.92 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
{
"name": "regex-vis",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "jest --config .jest.config.js --no-cache",
"test:watch": "jest --config .jest.config.js --no-cache --watch --",
"test:single": "jest --config .jest.config.js --no-cache --"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@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",
"@vitejs/plugin-react-swc": "^3.7.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-aria": "^3.34.1",
"react-dom": "^18.1.0",
"react-i18next": "^11.16.7",
"react-resizable-panels": "^2.0.20",
"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-plugin-svgr": "^4.2.0",
"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",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@eslint-react/eslint-plugin": "^1.5.25",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^14.0.0",
"@types/jest": "^26.0.13",
"@types/node": "^18.0.0",
"@types/react": "^18.0.11",
"@types/react-dom": "^18.0.5",
"@types/styled-jsx": "^2.2.8",
"@types/testing-library__jest-dom": "^5.14.4",
"autoprefixer": "^10.4.19",
"babel-plugin-import": "^1.13.3",
"eslint": "^9.7.0",
"eslint-plugin-react-hooks": "5.1.0-rc-df5f2736-20240712",
"eslint-plugin-react-refresh": "^0.4.8",
"jest": "26.6.0",
"jest-canvas-mock": "^2.5.0",
"postcss": "^8.4.39",
"regenerator-runtime": "^0.14.0",
"ts-jest": "^26.5.6",
"ts-node": "^10.0.0",
"vite-plugin-ejs": "^1.7.0"
}
}