-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.67 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
{
"name": "prereqpilot.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPatterns=__tests__/(?!integration)",
"test:integration": "jest --testPathPatterns=__tests__/integration",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@react-email/components": "^1.0.6",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.87.1",
"@types/pdf-parse": "^1.1.5",
"canvas": "^3.2.0",
"lucide-react": "^0.561.0",
"next": "16.1.6",
"pdf-parse": "^2.4.5",
"pdf2json": "^4.0.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-email": "^5.2.5",
"react-hook-form": "^7.68.0",
"resend": "^6.9.1",
"sass": "^1.96.0",
"supabase": "^2.66.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"ts-node": "^10.9.2",
"typescript": "^5",
"whatwg-fetch": "^3.6.20"
},
"overrides": {
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3"
}
}