-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.62 KB
/
package.json
File metadata and controls
91 lines (91 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
86
87
88
89
90
91
{
"name": "my-next-pizza",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio",
"seed": "tsx prisma/seed.ts",
"prepare": "husky",
"eslint": "eslint . --fix",
"check-all-lint-errors": "eslint .",
"precommit": "bun run eslint",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@prisma/adapter-pg": "^7.4.1",
"@prisma/client": "^7.4.1",
"@prisma/extension-accelerate": "^3.0.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"axios": "^1.11.0",
"bcrypt": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-unused-imports": "^4.3.0",
"localtunnel": "^2.0.2",
"lucide-react": "^0.477.0",
"next": "^15.5.3",
"next-auth": "^4.24.13",
"next-themes": "^0.4.6",
"nextjs-toploader": "^3.9.17",
"nodemailer": "^7.0.11",
"pg": "^8.18.0",
"prisma": "^7.4.1",
"qs": "^6.14.0",
"react": "^19.1.1",
"react-dadata": "^2.28.0-beta.0",
"react-dom": "^19.1.1",
"react-hook-form": "^7.67.0",
"react-insta-stories": "^2.8.0",
"react-phone-number-input": "^3.4.14",
"react-use": "^17.6.0",
"resend": "^6.6.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.1.11",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"vaul": "^1.1.2",
"zod": "^4.1.13",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.11",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcrypt": "^6.0.0",
"@types/bun": "latest",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.33",
"@types/nodemailer": "^7.0.4",
"@types/pg": "^8.16.0",
"@types/qs": "^6.14.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.0.0",
"eslint-config-next": "^16.1.6",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}