-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.52 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
{
"name": "lab-eats",
"version": "0.3.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"lint": "eslint .",
"start": "next start",
"test": "vitest",
"screenshots": "jiti scripts/screenshots/capture.ts",
"screenshots:ci": "npm run db:seed && npm run screenshots",
"db:generate": "prisma generate",
"db:migrate": "npx prisma migrate dev",
"db:migrate:prod": "npx prisma migrate deploy",
"db:push": "npx prisma db push",
"db:studio": "npx prisma studio",
"db:seed": "jiti scripts/screenshots/seed.ts"
},
"dependencies": {
"@headlessui/react": "^2.2.10",
"@hookform/resolvers": "^5.4.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/adapter-better-sqlite3": "^7.8.0",
"@prisma/client": "^7.8.0",
"@tanstack/react-query": "^5.101.0",
"@trpc/client": "^11.17.0",
"@trpc/next": "^11.17.0",
"@trpc/react-query": "^11.17.0",
"@trpc/server": "^11.17.0",
"better-sqlite3": "^12.10.1",
"dayjs": "^1.11.21",
"dotenv": "^17.4.2",
"ldapts": "^8.1.8",
"lucide-react": "^1.18.0",
"next": "^16.2.9",
"next-auth": "^4.24.14",
"nodemailer": "^7.0.13",
"papaparse": "^5.5.3",
"rate-limiter-flexible": "^11.2.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.79.0",
"react-select": "^5.10.2",
"superjson": "^2.2.6",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.61.0",
"@tailwindcss/postcss": "^4.3.1",
"@tailwindcss/typography": "^0.5.20",
"@types/eslint": "^9.6.1",
"@types/node": "^24.13.2",
"@types/papaparse": "^5.5.2",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"@vitejs/plugin-react": "^6.0.2",
"daisyui": "^5.5.23",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.9",
"globals": "^17.6.0",
"jiti": "^2.7.0",
"postcss": "^8.5.15",
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"prisma": "^7.8.0",
"tailwindcss": "^4.3.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vitest": "^4.1.9"
},
"ct3aMetadata": {
"initVersion": "7.10.3"
},
"overrides": {
"@hono/node-server": "^1.19.13",
"minimatch": "^10.2.1",
"postcss": "^8.5.15",
"uuid": "^11.1.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3"
}
}