-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.36 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
{
"name": "quizotic",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "node server.mjs",
"build": "next build",
"start": "NODE_ENV=production node server.mjs",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"brand:assets": "node scripts/generate-brand-assets.mjs",
"brand:assets:check": "node scripts/generate-brand-assets.mjs --check",
"test:e2e": "playwright test",
"predeploy": "bash scripts/predeploy-check.sh",
"repair-schema": "node scripts/ensure-critical-columns.mjs",
"rewrite-r2-urls": "node scripts/rewrite-r2-urls.mjs",
"mcp:quizotic": "node mcp/quizotic-mcp-server.mjs",
"budget:check": "node scripts/check-bundle-budget.mjs"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@aws-sdk/client-s3": "^3.1024.0",
"@dicebear/core": "^9.4.2",
"@dicebear/fun-emoji": "^9.4.2",
"@dicebear/pixel-art": "^9.4.2",
"@dicebear/thumbs": "^9.4.2",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^7.6.0",
"@sentry/nextjs": "^10.51.0",
"@socket.io/redis-adapter": "^8.3.0",
"browser-image-compression": "^2.0.2",
"canvas-confetti": "^1.9.4",
"exceljs": "^4.4.0",
"framer-motion": "^12.38.0",
"ioredis": "^5.10.1",
"jszip": "^3.10.1",
"lottie-react": "^2.4.1",
"mammoth": "^1.12.0",
"next": "16.2.0",
"next-auth": "^5.0.0-beta.30",
"nodemailer": "^7.0.7",
"openai": "^6.32.0",
"pdf-lib": "^1.17.1",
"pdf-parse": "^2.4.5",
"pdfjs-dist": "^5.6.205",
"pg": "^8.20.0",
"posthog-js": "^1.396.3",
"prisma": "^7.6.0",
"razorpay": "^2.9.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-qr-code": "^2.0.18",
"recharts": "^3.8.1",
"resend": "^6.10.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"stripe": "^22.0.0",
"tesseract.js": "^7.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^20",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.4"
}
}