-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.09 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
{
"name": "client",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"lint": "eslint src",
"format": "npm run lint --fix & prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "6.4.8",
"@testing-library/react": "16.0.0",
"@types/node": "22.2.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@vitejs/plugin-react": "4.3.1",
"@vitest/coverage-v8": "^2.0.5",
"autoprefixer": "10.4.20",
"eslint": "^9.8.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "^7.35.0",
"happy-dom": "14.12.3",
"husky": "9.1.4",
"postcss": "8.4.40",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.6",
"tailwindcss": "3.4.7",
"typescript": "5.5.4",
"vite": "5.3.5",
"vitest": "2.0.5"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@reduxjs/toolkit": "^2.2.7",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"cmdk": "^1.0.0",
"dexie": "^4.0.8",
"framer-motion": "^11.3.29",
"fuse.js": "^7.0.0",
"lucide-react": "0.427.0",
"react": "18.3.1",
"react-dom": "18.3.0",
"react-hook-form": "^7.52.2",
"react-router-dom": "6.26.0",
"reselect": "^5.1.1",
"tailwind-merge": "2.4.0",
"tailwindcss-animate": "1.0.7",
"uuid": "^10.0.0",
"vaul": "^0.9.1",
"zod": "^3.23.8",
"zustand": "^5.0.0-rc.2"
},
"volta": {
"node": "20.11.0"
}
}