-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.73 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
57
58
59
60
61
{
"name": "issue-tracker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && npx tsc prisma/seed.ts",
"deploy-vercel": "prisma generate && npm run db:migrate-prod && npm run build && npm run db:seed",
"start": "next start",
"lint": "next lint",
"email": "email dev -p 3030 -d src/emails",
"db:migrate-dev": "prisma migrate dev",
"db:migrate-prod": "prisma migrate deploy",
"db:seed": "node prisma/seed.js"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.21.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^3.1.4",
"@react-email/components": "^0.0.27",
"@sentry/nextjs": "^8.35.0",
"@tanstack/react-query": "^5.59.16",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"classnames": "^2.5.1",
"crypto": "^1.0.1",
"easymde": "^2.18.0",
"moment": "^2.30.1",
"next": "14.2.16",
"next-auth": "^4.24.10",
"prisma": "^5.21.1",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"react-loading-skeleton": "^3.5.0",
"react-markdown": "^9.0.1",
"react-simplemde-editor": "^5.2.0",
"recharts": "^2.13.0",
"resend": "^4.0.1-alpha.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/bcrypt": "^5.0.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"delay": "^6.0.0",
"eslint": "^8",
"eslint-config-next": "14.2.16",
"postcss": "^8",
"react-email": "^3.0.2",
"sass": "^1.80.3",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}