-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.32 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
{
"name": "thrifty-bun",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch --verbose"
},
"dependencies": {
"@next/env": "^14.2.1",
"@radix-ui/react-slot": "^1.0.2",
"@supabase/auth-helpers-nextjs": "^0.9.0",
"@supabase/ssr": "^0.1.0",
"@supabase/supabase-js": "2.44.4",
"@tailwindcss/forms": "^0.5.7",
"@types/css-mediaquery": "^0.1.4",
"@types/negotiator": "^0.6.1",
"@types/node": "^20.10.5",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/uuid": "^9.0.8",
"accept-language": "^3.0.18",
"bun": "^1.1.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dotenv": "^16.4.5",
"embla-carousel-react": "^8.0.2",
"eslint": "8.49.0",
"eslint-config-next": "^14.0.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-resources-to-backend": "^1.1.4",
"lucide-react": "^0.372.0",
"negotiator": "^0.6.3",
"next": "^14.2.2",
"next-intl": "^2.20.0",
"next-themes": "^0.2.1",
"punycode": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.2",
"react-icons": "^4.12.0",
"server-only": "^0.0.1",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"url-search-params-polyfill": "^8.2.5",
"uuid": "^9.0.1",
"whatwg-url": "^14.0.0",
"zustand": "^4.4.7"
},
"devDependencies": {
"@playwright/test": "^1.43.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"autoprefixer": "^10.4.15",
"bun-types": "^1.0.20",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-testing-library": "^6.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.29",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.4.0",
"tsc": "^2.0.4"
},
"module": "index.ts",
"type": "module",
"peerDependencies": {
"typescript": "^5.3.3"
}
}