-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.16 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
{
"name": "vite-react-ts-airbnb-eslint-prettier",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --mode development",
"build": "tsc && NODE_ENV=production vite build --mode production",
"lint": "eslint --ext .js,.jsx,.ts.,.tsx, ./src",
"lint:debug": "eslint --ext .js,.jsx,.ts,.tsx, ./src --debug",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx, ./src --fix",
"preview": "vite --mode production preview",
"gen-types": "npx supabase gen types typescript --linked > src/types/supabase.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.4.2",
"@supabase/supabase-js": "^2.39.3",
"@tanstack/react-query": "^5.17.12",
"@tanstack/react-query-devtools": "^5.17.12",
"classnames": "^2.5.1",
"clsx": "^2.1.0",
"date-fns": "^3.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.51.1",
"react-router-dom": "^6.22.3",
"react-spinners": "^0.14.1",
"react-toastify": "^10.0.5",
"recoil": "^0.7.7",
"tailwind-merge": "^2.5.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@tanstack/eslint-plugin-query": "^5.17.7",
"@types/node": "^20.11.6",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-tailwindcss": "^3.14.0",
"msw": "^2.1.4",
"postcss": "^8.4.33",
"prettier": "^3.2.2",
"supabase": "^1.192.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.0.12",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.1"
}
}