-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 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
{
"name": "volunteer-hub",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"dev:https": "next dev --turbopack --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:all": "npm run typecheck && npm run test:unit && npm run test:e2e",
"test-cron": "node scripts/test-cron.js",
"test-cron:reminder": "node scripts/test-cron.js reminder",
"test-cron:rollcall": "node scripts/test-cron.js rollcall",
"test-cron:daily-digest": "node scripts/test-daily-digest.js",
"test-cron:senior-digest": "node scripts/trigger-senior-digest-now.js",
"debug-senior-digest": "node scripts/test-senior-project-digest-debug.js",
"send-missed-senior-emails": "node scripts/send-missed-senior-digest-emails.js --confirm"
},
"dependencies": {
"@headlessui/react": "^2.2.4",
"@mapbox/search-js-react": "^1.3.0",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.52.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.1",
"katex": "^0.16.27",
"next": "^16.0.10",
"next-intl": "^4.5.8",
"pdf-poppler": "^0.2.3",
"pdfjs-dist": "^5.4.149",
"react-datepicker": "^8.4.0",
"react-dropzone": "^14.3.8",
"react-katex": "^3.1.0",
"react-time-picker": "^7.0.0",
"resend": "^4.7.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.0",
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.48.2",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-katex": "^3.0.4",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "^2.1.5",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"jsdom": "^25.0.1",
"msw": "^2.6.8",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.5"
},
"overrides": {
"debug": "^4.3.7",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.4",
"istanbul-lib-source-maps": "^4.0.1"
}
}