-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "parkingdirekt-control-center",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio"
},
"dependencies": {
"next": "^14.2.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"typescript": "^5.4.0",
"@types/node": "^20.12.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"prisma": "^5.13.0",
"@prisma/client": "^5.13.0",
"next-auth": "^4.24.7",
"@next-auth/prisma-adapter": "^1.0.7",
"tailwindcss": "^3.4.4",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^2.1.3",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"@types/crypto-js": "^4.2.2",
"redis": "^4.6.13",
"nodemailer": "^7.0.7",
"@types/nodemailer": "^6.4.14",
"@tanstack/react-query": "^5.28.0",
"stripe": "^15.6.0",
"recharts": "^2.12.6",
"react-hook-form": "^7.51.4",
"@hookform/resolvers": "^3.3.4",
"zod": "^3.23.8",
"date-fns": "^3.6.0",
"swr": "^2.2.5",
"react-hot-toast": "^2.4.1",
"lucide-react": "^0.378.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"@types/eslint": "^8.56.10",
"tsx": "^4.9.0"
},
"engines": {
"node": ">=18.17.0"
}
}