-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.93 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.93 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "workhub",
"version": "1.0.0",
"private": false,
"description": "Open-source project management, time tracking, and invoicing platform for freelancers and small teams",
"author": "Sikasio <info@sikasio.com> (https://sikasio.com)",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/AhmedSayedSk/workhub#readme",
"repository": {
"type": "git",
"url": "https://github.com/AhmedSayedSk/workhub.git"
},
"bugs": {
"url": "https://github.com/AhmedSayedSk/workhub/issues"
},
"keywords": [
"project-management",
"time-tracking",
"kanban-board",
"freelancer-tools",
"invoicing",
"task-management",
"firebase",
"nextjs",
"react",
"typescript",
"ai-assistant",
"gemini",
"self-hosted"
],
"scripts": {
"dev": "next dev --webpack -p 3090",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "node --disable-warning=ExperimentalWarning --experimental-strip-types --test \"src/**/*.test.ts\"",
"firebase:deploy": "firebase deploy",
"firebase:deploy:rules": "firebase deploy --only firestore:rules",
"firebase:deploy:indexes": "firebase deploy --only firestore:indexes",
"migrate": "npx ts-node --project tsconfig.migration.json firebase/migrations/run-migrations.ts",
"migrate:reset": "npx ts-node --project tsconfig.migration.json firebase/migrations/reset-database.ts",
"db:clear": "npx ts-node --project tsconfig.migration.json firebase/migrations/clear-sample-data.ts"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@fullcalendar/core": "^6.1.20",
"@fullcalendar/daygrid": "^6.1.20",
"@fullcalendar/interaction": "^6.1.20",
"@fullcalendar/list": "^6.1.20",
"@fullcalendar/react": "^6.1.20",
"@fullcalendar/timegrid": "^6.1.20",
"@google/generative-ai": "^0.21.0",
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.1.6",
"@tiptap/extension-image": "^3.20.0",
"@tiptap/extension-link": "^3.20.0",
"@tiptap/extension-placeholder": "^3.20.0",
"@tiptap/pm": "^3.20.0",
"@tiptap/react": "^3.20.0",
"@tiptap/starter-kit": "^3.20.0",
"@types/nodemailer": "^8.0.0",
"@xyflow/react": "^12.11.0",
"better-sqlite3": "^12.10.0",
"bootstrap-icons": "^1.13.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dagre": "^0.8.5",
"date-fns": "^4.1.0",
"firebase": "^11.1.0",
"firebase-admin": "^13.0.2",
"lucide-react": "^0.468.0",
"markdown-it": "^14.1.0",
"next": "^16",
"nodemailer": "^8.0.7",
"react": "^19.2.0",
"react-datepicker": "^9.1.0",
"react-dom": "^19.2.0",
"react-toastify": "^11.0.5",
"recharts": "^2.14.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"tiptap-markdown": "^0.9.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/better-sqlite3": "^7.6.13",
"@types/dagre": "^0.7.54",
"@types/markdown-it": "^14.1.0",
"@types/node": "^22.10.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-next": "^16",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}