-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.62 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.62 KB
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
{
"name": "jok-cosmetics-website",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/**/*.{ts,tsx} && stylelint src/**/*.css",
"lint:fix": "eslint --fix src/**/*.{ts,tsx} && stylelint --fix src/**/*.css",
"migrate": "node scripts/migrate.js",
"clean": "rd /s /q .next && rd /s /q node_modules && del package-lock.json"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^3.10.0",
"@prisma/client": "^6.3.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dismissable-layer": "^1.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.1.5",
"@stripe/stripe-js": "^5.6.0",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/ssr": "^0.0.1",
"@supabase/supabase-js": "^2.39.1",
"@swc/core": "^1.10.12",
"@swc/helpers": "^0.5.15",
"@types/nodemailer": "^6.4.17",
"@vercel/analytics": "^1.5.0",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"date-fns": "^2.30.0",
"framer-motion": "^10.18.0",
"glob": "^9.0.0",
"lucide-react": "^0.298.0",
"next": "15.1.11",
"nodemailer": "^6.10.0",
"openai": "^4.80.0",
"prisma": "^6.3.0",
"puppeteer": "^24.1.0",
"react": "^18.3.1",
"react-day-picker": "^8.9.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"react-intersection-observer": "^9.14.1",
"regenerator-runtime": "^0.14.1",
"rimraf": "^4.0.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@shadcn/ui": "^0.0.4",
"@types/jest-when": "^3.5.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"jest-when": "^3.7.0",
"postcss": "^8.5.1",
"postcss-preset-env": "^10.1.3",
"stylelint": "^16.3.1",
"stylelint-config-standard": "^37.0.0",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}