-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.54 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.54 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
{
"name": "goal-tracker",
"version": "1.0.0",
"description": "A modern goal tracking application for managing weekly habits, annual goals, and long-term aspirations",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"initialize": "node scripts/setup-database.js",
"migrate": "node scripts/migrate-add-days.js",
"migrate:sortorder": "node scripts/migrate-add-sortorder-long-term.js",
"migrate:tracking": "node scripts/migrate-add-tracking-mode.js",
"migrate:menuorder": "node scripts/migrate-add-menu-order.js"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@heroicons/react": "^2.1.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^2.0.0",
"better-sqlite3": "^9.4.0",
"chart.js": "^4.4.0",
"clsx": "^2.1.0",
"date-fns": "^3.3.0",
"lucide-react": "^0.344.0",
"next": "^14.2.0",
"react": "^18.3.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.0",
"recharts": "^2.10.0",
"tailwind-merge": "^2.2.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/node": "^20.11.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.0"
}
}