-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.81 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "fip-catcare",
"private": true,
"version": "0.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "[email protected]:nina1012/FIP-CatCare.git"
},
"keywords": [
"typescript",
"react",
"tracking-app",
"supabase",
"react-query",
"medical-application"
],
"author": {
"name": "Nina",
"url": "https://github.com/nina1012"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint --ext .ts,.tsx ./src",
"prettier": "prettier \"**/*.+(json|ts|tsx)\"",
"format:check": "npm run prettier -- --check",
"format:fix": "npm run prettier -- --write",
"types:check": "tsc --noEmit --pretty",
"preview": "vite preview",
"prepare": "husky",
"test": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@hookform/resolvers": "^3.9.0",
"@mui/material": "^6.0.2",
"@mui/x-charts": "^7.16.0",
"@ngneat/falso": "^7.2.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.5",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-menubar": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@supabase/supabase-js": "^2.45.1",
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-query-devtools": "^5.51.18",
"@types/react-window": "^1.8.8",
"@vercel/node": "^3.2.24",
"axios": "^1.7.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.11.11",
"lucide-react": "^0.424.0",
"openai": "^4.72.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.52.2",
"react-query-auth": "^2.3.0",
"react-router-dom": "^6.26.0",
"react-window": "^1.8.10",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.47.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.1.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-query": "^1.2.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/ui": "^2.0.5",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.4",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.7",
"msw": "^2.3.5",
"postcss": "^8.4.40",
"react-test-renderer": "^18.3.1",
"supabase": "^2.6.8",
"tailwindcss": "^3.4.7",
"typescript": "^5.2.2",
"vite": "^5.3.4",
"vite-node": "^2.0.5",
"vitest": "^2.0.5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}