forked from LanceMoe/openai-translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.21 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
{
"name": "openai-translator-web",
"private": false,
"version": "0.2.0",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"prepare": "husky install",
"preview": "vite preview",
"prod": "pnpm build && pnpx serve -s dist",
"lint": "eslint ./src/**/*.{ts,tsx}",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx}'",
"format": "prettier --write ."
},
"dependencies": {
"@headlessui/react": "^1.7.19",
"@microsoft/fetch-event-source": "^2.0.1",
"@popperjs/core": "^2.11.8",
"@tanstack/react-query": "^5.39.0",
"axios": "^1.7.2",
"clsx": "^2.1.1",
"csstype": "^3.1.3",
"daisyui": "4.4.14",
"i18next": "^23.11.5",
"i18next-http-backend": "^2.5.2",
"react": "^18.3.1",
"react-daisyui": "^5.0.0",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-i18next": "^14.1.2",
"react-icons": "^5.2.1",
"react-router-dom": "^6.23.1",
"react-speech-recognition": "^3.10.0",
"react-string-replace": "^1.1.1",
"react-textarea-autosize": "^8.5.3",
"regenerator-runtime": "^0.14.1",
"usehooks-ts": "^2.16.0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-speech-recognition": "^3.9.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"postcss": "^8.4.38",
"postcss-100vh-fix": "^1.0.2",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-pwa": "^0.17.5",
"vite-plugin-svgr": "^4.2.0",
"workbox-core": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-window": "^7.1.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}