-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.11 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.11 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
{
"name": "exam-cooker-2024",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "npx prisma generate && next build --webpack",
"start": "next start",
"lint": "next lint",
"seed_tags": "node scripts/seed-tags.js",
"seed_exam_tags": "node scripts/seed-exam-tags.js",
"sync_tags": "node scripts/sync-missing-tags.js",
"sync_tags:dry": "node scripts/sync-missing-tags.js --dry-run",
"backfill_exam_tags": "node scripts/backfill-past-paper-exam-tags.js",
"backfill_exam_tags:dry": "node scripts/backfill-past-paper-exam-tags.js --dry-run",
"copy_prod_to_dev": "node scripts/db/copy-prod-to-dev.js"
},
"dependencies": {
"@auth/prisma-adapter": "^2.10.0",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.0.2",
"@next/third-parties": "16.2.0",
"@posthog/react": "^1.7.0",
"@prisma/client": "^6.16.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-toast": "^1.2.15",
"@types/lodash": "^4.17.20",
"@upstash/ratelimit": "^2.0.6",
"@upstash/redis": "^1.35.4",
"ai": "^6.0.66",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"fuse.js": "^7.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.544.0",
"next": "16.2.0",
"next-auth": "^5.0.0-beta.30",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.4.296",
"posthog-js": "^1.336.4",
"posthog-node": "^5.24.7",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-dropzone": "^14.3.8",
"react-pdf": "^10.4.1",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "25.1.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"postcss": "^8.5.6",
"prisma": "^6.16.3",
"tailwindcss": "^4.1.14",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}