-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
104 lines (104 loc) · 3.3 KB
/
package.json
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
{
"name": "fluid-calendar",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build:os": "NEXT_PUBLIC_ENABLE_SAAS_FEATURES=false npm run build",
"start": "next start",
"lint": "next lint",
"test:unit": "jest",
"test:e2e": "playwright test",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"setup": "npm install && npm run prisma:generate && npm run prisma:migrate",
"clean": "rm -rf .next node_modules",
"db:up": "docker compose up db -d",
"sync": "scripts/sync-repos.sh /Users/emad/src/fluid-calendar-saas /Users/emad/src/fluid-calendar"
},
"dependencies": {
"@auth/core": "^0.34.2",
"@auth/prisma-adapter": "^2.7.4",
"@azure/msal-node": "^3.2.2",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/multimonth": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@prisma/client": "^6.3.1",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@tailwindcss/forms": "^0.5.10",
"@types/bcrypt": "^5.0.2",
"@types/react-datepicker": "^7.0.0",
"@types/uuid": "^10.0.0",
"bcrypt": "^5.1.1",
"better-sqlite3": "^11.8.1",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.2.0",
"googleapis": "^144.0.0",
"ical.js": "^2.1.0",
"lucide-react": "^0.475.0",
"next": "15.1.6",
"next-auth": "^4.24.11",
"next-themes": "^0.4.4",
"pg": "^8.13.3",
"react": "^19.0.0",
"react-aria": "^3.37.0",
"react-datepicker": "^8.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-stately": "^3.35.0",
"rrule": "^2.8.1",
"sonner": "^2.0.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"tsdav": "^2.1.3",
"uuid": "^11.0.5",
"zustand": "^4.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.50.1",
"@types/canvas-confetti": "^1.9.0",
"@types/jest": "^29.5.12",
"@types/node": "20.17.19",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"eslint-formatter-compact": "^8.40.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prisma": "^6.3.1",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.2",
"typescript": "^5"
}
}