-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.25 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.25 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
{
"name": "lab-eats",
"version": "0.3.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"lint": "eslint .",
"start": "next start",
"test": "vitest",
"db:generate": "prisma generate",
"db:migrate": "npx prisma migrate dev",
"db:push": "npx prisma db push",
"db:studio": "npx prisma studio"
},
"dependencies": {
"@headlessui/react": "^2.0.3",
"@hookform/resolvers": "^3.3.4",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.22.0",
"@tanstack/react-query": "^4.18.0",
"@trpc/client": "^10.45.3",
"@trpc/next": "^10.45.3",
"@trpc/react-query": "^10.45.3",
"@trpc/server": "^10.45.3",
"@types/react-select": "^5.0.1",
"dayjs": "^1.11.11",
"dotenv": "^17.3.1",
"ldapts": "^7.0.11",
"lucide-react": "^0.575.0",
"next": "^16.1.6",
"next-auth": "^4.24.13",
"nodemailer": "^7.0.13",
"papaparse": "^5.5.3",
"rate-limiter-flexible": "^5.0.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.2",
"react-select": "^5.8.0",
"superjson": "^2.2.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@hookform/devtools": "^4.3.1",
"@tailwindcss/typography": "^0.5.13",
"@types/eslint": "^8.56.10",
"@types/ldapjs": "^3.0.6",
"@types/node": "^20.12.11",
"@types/papaparse": "^5.5.2",
"@types/prettier": "^2.7.3",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.24",
"daisyui": "^4.11.1",
"eslint": "^9.39.3",
"eslint-config-next": "^16.1.6",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"postcss": "^8.4.38",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"typescript-eslint": "^8.56.1",
"vitest": "^3.0.9"
},
"ct3aMetadata": {
"initVersion": "7.10.3"
},
"overrides": {
"minimatch": "^10.2.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}