-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 KB
/
package.json
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
{
"name": "hope-for-haiti",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"test": "jest --passWithNoTests",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:seed": "tsx scripts/seed.ts",
"db:migrate": "npx prisma migrate dev",
"db:view": "npx prisma studio"
},
"dependencies": {
"@prisma/client": "^6.2.1",
"@react-email/render": "1.0.3",
"@sendgrid/mail": "^8.1.4",
"argon2": "^0.41.1",
"next": "15.0.4",
"next-auth": "^5.0.0-beta.25",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.4.0",
"zod": "^3.24.1",
"zod-form-data": "^2.0.5"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-jest": "^29.7.0",
"dotenv": "^16.4.7",
"eslint": "^8",
"eslint-config-next": "15.0.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-mock-extended": "^4.0.0-beta1",
"next-test-api-route-handler": "^4.0.14",
"open-html": "^1.0.1",
"postcss": "^8",
"prisma": "^6.2.1",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}