forked from ashsajal1/typing-app
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
43 lines (43 loc) · 1.27 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
{
"name": "typing-test",
"private": true,
"version": "1.2.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"generate-pwa-assets": "pwa-assets-generator --preset minimal public/logo.png"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@tanstack/react-router": "^1.35.3",
"lucide-react": "^0.390.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@tanstack/router-devtools": "^1.35.3",
"@tanstack/router-vite-plugin": "^1.34.8",
"@types/node": "^20.14.2",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vite-pwa/assets-generator": "^0.2.4",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"daisyui": "^4.12.2",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-pwa": "^0.20.0"
}
}