-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
80 lines (80 loc) · 2.41 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
{
"name": "openai-translator-web",
"private": false,
"version": "0.3.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"prepare": "husky",
"preview": "vite preview",
"prod": "pnpm build && pnpx serve -s dist",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write ."
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@mantine/hooks": "^7.16.2",
"@microsoft/fetch-event-source": "^2.0.1",
"@popperjs/core": "^2.11.8",
"@tanstack/react-query": "^5.65.0",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"csstype": "^3.1.3",
"daisyui": "^4.12.23",
"i18next": "^24.2.2",
"i18next-http-backend": "^3.0.2",
"react": "^19.0.0",
"react-daisyui": "^5.0.5",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.5.1",
"react-i18next": "^15.4.0",
"react-icons": "^5.4.0",
"react-router-dom": "^7.1.3",
"react-speech-recognition": "^3.10.0",
"react-string-replace": "^1.1.1",
"react-textarea-autosize": "^8.5.7",
"regenerator-runtime": "^0.14.1",
"tailwind-merge": "^2.6.0",
"workbox-build": "^7.3.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react-speech-recognition": "^3.9.6",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "19.0.0-beta-201e55d-20241215",
"eslint": "^9.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "19.0.0-beta-201e55d-20241215",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"postcss-100vh-fix": "^1.0.2",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vite": "^6.0.11",
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-svgr": "^4.3.0",
"workbox-core": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-window": "^7.3.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}