-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.53 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.53 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
{
"name": "meetopia-app",
"version": "0.1.0",
"private": true,
"overrides": {
"esbuild": "^0.25.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"dev": "concurrently \"npm run dev:next\" \"npm run dev:server\"",
"dev:next": "next dev -p 4000",
"dev:server": "cd server && npm run dev",
"build": "next build",
"start": "next start",
"signal": "cd server && npm start",
"signal:dev": "cd server && npm run dev",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"seed": "node prisma/seed.mjs",
"postinstall": "prisma generate",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:test": "curl http://localhost:3000/api/db-test"
},
"dependencies": {
"@jitsi/react-sdk": "^1.4.4",
"@neondatabase/serverless": "^1.0.0",
"@prisma/client": "^5.8.0",
"@radix-ui/react-tabs": "^1.1.12",
"@sentry/integrations": "^7.114.0",
"@sentry/nextjs": "^9.24.0",
"@types/uuid": "^10.0.0",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"autoprefixer": "^10.4.20",
"bcryptjs": "^2.4.3",
"compression": "^1.8.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"drizzle-kit": "^0.31.1",
"drizzle-orm": "^0.44.1",
"emoji-picker-react": "^4.6.0",
"esbuild": "^0.25.5",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"framer-motion": "^12.16.0",
"google-auth-library": "^9.15.1",
"googleapis": "^149.0.0",
"helmet": "^8.1.0",
"ics": "^3.8.1",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.513.0",
"next": "^15.3.3",
"next-auth": "^4.24.5",
"postcss": "^8.4.49",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.7.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.3.3",
"uuid": "^11.1.0",
"zod": "^3.25.51"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/body-parser": "^1.19.5",
"@types/connect": "^3.4.38",
"@types/cookie": "^0.6.0",
"@types/cors": "^2.8.17",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.0",
"@types/express-serve-static-core": "^5.0.6",
"@types/http-errors": "^2.0.4",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/mime": "^3.0.4",
"@types/node": "^22.13.10",
"@types/prop-types": "^15.7.14",
"@types/qs": "^6.9.18",
"@types/range-parser": "^1.2.7",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/scheduler": "^0.23.0",
"@types/send": "^0.17.4",
"@types/serve-static": "^1.15.7",
"@types/socket.io": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"concurrently": "^8.2.2",
"eslint": "^9.28.0",
"eslint-config-next": "^15.3.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.0-beta.3",
"prisma": "^5.8.0",
"ts-node": "^10.9.2"
},
"description": "A modern meeting scheduling and management application built with Next.js that helps teams coordinate and organize their meetings efficiently.",
"main": "next.config.js",
"keywords": [],
"author": "",
"license": "ISC"
}