-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.88 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
{
"name": "windgear",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"seed": "tsx src/scripts/seed-products.ts",
"sync-users": "tsx -r dotenv/config src/scripts/sync-users-metadata.ts",
"seed:categories": "tsx -r dotenv/config src/scripts/seed-categories.ts",
"seed:duotone": "tsx -r dotenv/config src/scripts/seed-duotone-models.ts",
"seed:core": "tsx -r dotenv/config src/scripts/seed-core-models.ts",
"seed:cabrinha": "tsx -r dotenv/config src/scripts/seed-cabrinha-models.ts",
"seed:north": "tsx -r dotenv/config src/scripts/seed-north-models.ts"
},
"dependencies": {
"@supabase/supabase-js": "^2.39.7",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@headlessui/react": "^1.7.18",
"lucide-react": "^0.344.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.22.2",
"react-hot-toast": "^2.4.1",
"zustand": "^4.5.2",
"date-fns": "^3.3.1",
"stripe": "^14.19.0",
"@stripe/stripe-js": "^3.0.7",
"dotenv": "^16.4.5",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@headlessui/react": "^1.7.18",
"classnames": "^2.5.1",
"react-range-slider-input": "^3.0.7",
"@tanstack/react-query": "^5.24.1",
"react-helmet-async": "^2.0.4",
"recharts": "^2.12.2",
"retry": "^0.13.1",
"i18next": "^23.10.1",
"react-i18next": "^14.1.0",
"i18next-browser-languagedetector": "^7.2.0"
},
"devDependencies": {
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.18",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"vite": "^5.4.2",
"tsx": "^4.7.1"
}
}