-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.43 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
{
"name": "command-ops",
"version": "0.1.0",
"description": "An open-source, self-hostable task management system with a sci-fi command center interface",
"author": "Yavnik Sharma",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Yavnik/commandops.git"
},
"bugs": {
"url": "https://github.com/Yavnik/commandops/issues"
},
"homepage": "https://github.com/Yavnik/commandops#readme",
"keywords": [
"task-management",
"productivity",
"self-hosted",
"docker",
"nextjs",
"gamification"
],
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:generate": "bunx drizzle-kit generate",
"db:migrate": "bunx drizzle-kit migrate"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-alert-dialog": "^1.1.16",
"@radix-ui/react-checkbox": "^1.3.4",
"@radix-ui/react-dialog": "^1.1.16",
"@radix-ui/react-dropdown-menu": "^2.1.17",
"@radix-ui/react-label": "^2.1.9",
"@radix-ui/react-popover": "^1.1.16",
"@radix-ui/react-progress": "^1.1.9",
"@radix-ui/react-select": "^2.3.0",
"@radix-ui/react-slot": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.14",
"@radix-ui/react-tooltip": "^1.2.9",
"better-auth": "^1.6.14",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"date-fns-tz": "^3.2.0",
"drizzle-orm": "^0.45.2",
"framer-motion": "^12.40.0",
"ioredis": "^5.11.1",
"lucide-react": "^1.17.0",
"nanoid": "^5.1.11",
"next": "16.2.7",
"next-themes": "^0.4.6",
"postgres": "^3.4.9",
"posthog-js": "^1.381.0",
"posthog-node": "^5.36.3",
"react": "^19.2.7",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/ioredis": "^5.0.0",
"@types/node": "^24.13.1",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"drizzle-kit": "^0.31.10",
"eslint": "^10.4.1",
"eslint-config-next": "16.2.7",
"prettier": "^3.8.3",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
}
}