-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.63 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "teamify.com",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=18.19.0"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build:prisma": "prisma generate",
"start": "next start",
"lint": "next lint",
"db:seed": "tsx prisma/seed.ts",
"postinstall": "prisma generate",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:run:auth": "cypress run --spec 'cypress/e2e/auth/**/*.cy.ts'",
"test:e2e": "concurrently \"pnpm dev\" \"pnpm cypress:run:auth\" --kill-others-on-fail"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.864.0",
"@aws-sdk/s3-request-presigner": "^3.864.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@hookform/resolvers": "^4.1.3",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "6.18.0",
"@radix-ui/react-accordion": "^1.2.4",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.4",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.7",
"@radix-ui/react-dialog": "^1.1.10",
"@radix-ui/react-dropdown-menu": "^2.1.11",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.3",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toggle": "^1.1.9",
"@radix-ui/react-toggle-group": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.3",
"@tabler/icons-react": "^3.31.0",
"@tanstack/react-table": "^8.21.3",
"@types/leaflet": "^1.9.20",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.6.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cookie": "^1.0.2",
"date-fns": "^4.1.0",
"framer-motion": "^12.6.5",
"gsap": "^3.13.0",
"jsonwebtoken": "^9.0.2",
"leaflet": "^1.9.4",
"lenis": "^1.3.11",
"lightningcss": "^1.29.3",
"lucide-react": "^0.483.0",
"nanoid": "^5.1.5",
"next-auth": "^4.24.11",
"next-cloudinary": "^6.16.0",
"next-themes": "^0.4.6",
"pg": "^8.14.1",
"prop-types": "^15.8.1",
"psql": "^0.0.1",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0",
"react": "^19.1.0",
"react-datepicker": "^8.4.0",
"react-day-picker": "^9.7.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.5.0",
"react-leaflet": "^5.0.0",
"recharts": "^2.15.3",
"resend": "^6.0.1",
"sonner": "^2.0.3",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^3.24.2",
"zustand": "^5.0.6"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^7.0.1",
"@eslint/eslintrc": "^3",
"@faker-js/faker": "^10.0.0",
"@tailwindcss/postcss": "^4",
"@testing-library/cypress": "^10.1.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^20.17.30",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"cypress": "^15.4.0",
"dotenv": "^17.2.1",
"eslint": "^9",
"eslint-config-next": "15.2.3",
"next": "16.0.10",
"node-fetch": "^3.3.2",
"prisma": "^6.18.0",
"tailwindcss": "^4",
"typescript": "^5",
"vercel": "^41.6.0"
}
}