-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.63 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
{
"name": "nafarrock",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && prisma db push && npm run db:seed && next build",
"start": "next start",
"lint": "next lint",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts",
"test": "vitest",
"test:e2e": "playwright test"
},
"dependencies": {
"@auth/prisma-adapter": "^2.4.1",
"@mapbox/mapbox-gl-geocoder": "^5.1.2",
"@prisma/client": "^5.22.0",
"@tanstack/react-query": "^5.59.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.5.1",
"clsx": "^2.1.1",
"csv-parse": "^6.1.0",
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"framer-motion": "^11.18.2",
"lucide-react": "^0.454.0",
"mapbox-gl": "^3.19.1",
"next": "15.0.7",
"next-auth": "^4.24.10",
"next-intl": "^4.8.3",
"nextjs-toploader": "^3.9.17",
"openai": "^6.25.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-map-gl": "^8.1.0",
"react-markdown": "^10.0.0",
"remark-gfm": "^4.0.0",
"resend": "^6.9.2",
"tailwind-merge": "^2.5.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-config-next": "15.0.7",
"postcss": "^8.4.49",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.15",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}