-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.29 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
{
"name": "polzzak-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0 --fix",
"lint-fix": "eslint . --fix",
"format": "prettier --write ./src",
"generate-types": "dotenv -- npx supabase gen types typescript > ./src/types/supabase.ts"
},
"dependencies": {
"@supabase/supabase-js": "^2.45.6",
"@tanstack/react-query": "^5.59.15",
"@types/react-lazy-load-image-component": "^1.6.4",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"colorthief": "^2.6.0",
"framer-motion": "^11.11.10",
"gsap": "^3.12.5",
"immer": "^10.1.1",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-lazy-load-image-component": "^1.6.2",
"react-router-dom": "^6.27.0",
"react-toastify": "^10.0.6",
"react-window": "^1.8.10",
"supabase": "^1.207.9",
"tailwind-merge": "^2.5.4",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.1",
"@eslint/js": "^9.12.0",
"@tanstack/react-query-devtools": "^5.59.15",
"@types/lodash-es": "^4.17.12",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"dotenv-cli": "^7.4.2",
"eslint": "9",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"msw": "^2.4.11",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.14",
"typescript": "~5.5.3",
"typescript-eslint": "^8.9.0",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^5.0.1"
},
"main": "index.js",
"license": "MIT",
"msw": {
"workerDirectory": [
"public"
]
}
}