-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.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
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
{
"name": "glanus",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern=__tests__",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"prisma:generate": "prisma generate",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:reset": "prisma migrate reset",
"db:seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@prisma/client": "^6.2.1",
"@reactour/tour": "^3.8.0",
"@sendgrid/mail": "^8.1.6",
"@sentry/nextjs": "^10.38.0",
"@stripe/stripe-js": "^8.7.0",
"@tauri-apps/api": "^2.10.1",
"@types/qrcode": "^1.5.6",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"cron-parser": "^5.5.0",
"date-fns": "^4.1.0",
"isomorphic-dompurify": "^2.36.0",
"lucide-react": "^0.564.0",
"next": "^15.1.6",
"next-auth": "^4.24.11",
"node-ssh": "^13.2.1",
"openai": "^4.77.3",
"qrcode": "^1.5.4",
"rate-limiter-flexible": "^9.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.71.1",
"recharts": "^3.7.0",
"recordrtc": "^5.6.2",
"redis": "^5.11.0",
"simple-peer": "^9.11.1",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"stripe": "^20.3.1",
"tailwind-merge": "^3.4.0",
"validator": "^13.15.26",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.25.76",
"zustand": "^5.0.11"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^30.0.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.3",
"@types/simple-peer": "^9.11.9",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.6",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.4.49",
"prisma": "^6.2.1",
"tailwindcss": "^3.4.18",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"overrides": {
"html-encoding-sniffer": "2.0.1",
"whatwg-url": "14.0.0",
"@exodus/bytes": "1.13.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}