-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.99 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.99 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
{
"name": "issue-tracker",
"version": "0.1.0",
"description": "A modern, full-stack issue tracking application built with Next.js, featuring real-time updates, advanced filtering, and comprehensive user management.",
"private": true,
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-username/issue-tracker.git"
},
"bugs": {
"url": "https://github.com/your-username/issue-tracker/issues"
},
"homepage": "https://github.com/your-username/issue-tracker#readme",
"keywords": [
"issue-tracker",
"nextjs",
"react",
"typescript",
"prisma",
"mongodb",
"kanban",
"dashboard",
"project-management"
],
"scripts": {
"dev": "next dev --turbopack",
"seed": "node prisma/seed.js",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@auth/prisma-adapter": "^2.10.0",
"@hookform/resolvers": "^5.2.1",
"@prisma/client": "^6.13.0",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/themes": "^3.2.1",
"@sentry/nextjs": "^10.5.0",
"@tanstack/react-query": "^5.85.2",
"axios": "^1.11.0",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"delay": "^6.0.0",
"easymde": "^2.20.0",
"mongodb": "^6.18.0",
"next": "15.4.6",
"next-auth": "^4.24.11",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.62.0",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.5.0",
"react-loading-skeleton": "^3.5.0",
"react-markdown": "^10.1.0",
"react-simplemde-editor": "^5.2.0",
"react-window": "^1.8.11",
"react-window-infinite-loader": "^1.0.10",
"recharts": "^3.1.2",
"use-debounce": "^10.0.5",
"zod": "^4.0.17"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-window": "^1.8.8",
"eslint": "^9",
"eslint-config-next": "15.4.6",
"prisma": "^6.13.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}