-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.11 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.11 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
{
"name": "oops-budgeter",
"version": "3.0.1",
"private": true,
"scripts": {
"dev": "next dev --turbopack -p 3031",
"build": "npx drizzle-kit push && next build",
"start": "next start",
"lint": "next lint",
"g:tag": "git tag -s v$(node -p 'require(\"./package.json\").version') -m \"🔖tag: v$(node -p 'require(\"./package.json\").version') release\"",
"g:push": "git push && git push --follow-tags",
"v:major": "npm version major --no-git-tag-version",
"v:minor": "npm version minor --no-git-tag-version",
"v:patch": "npm version patch --no-git-tag-version"
},
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.9",
"@hookform/resolvers": "^4.1.3",
"@iconify/react": "^5.2.0",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-context-menu": "^2.2.6",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tooltip": "^1.1.8",
"better-sqlite3": "^11.8.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.30.5",
"drizzle-orm": "^0.40.0",
"drizzle-zod": "^0.7.0",
"file-saver": "^2.0.5",
"input-otp": "^1.4.2",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.479.0",
"mongoose": "^8.12.1",
"mysql2": "^3.13.0",
"next": "15.2.1",
"next-themes": "^0.4.6",
"node-cron": "^3.0.3",
"pg": "^8.14.0",
"quick.db": "^9.1.7",
"react": "^19.0.0",
"react-day-picker": "8.10.1",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-to-print": "^3.0.5",
"recharts": "^2.15.1",
"sonner": "^2.0.1",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"timescape": "^0.7.1",
"tsx": "^4.19.3",
"vaul": "^1.1.2",
"write-file-atomic": "^6.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/date-fns": "^2.6.3",
"@types/file-saver": "^2.0.7",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/recharts": "^1.8.29",
"eslint": "^9",
"eslint-config-next": "15.2.1",
"tailwindcss": "^4",
"typescript": "^5"
},
"author": {
"name": "Laith Alkhaddam aka Iconical or Sleepyico",
"url": "https://iconical.dev"
},
"license": "Apache-2.0",
"homepage": "https://budget.oopsapps.tech",
"repository": {
"type": "git",
"url": "https://github.com/OopsApps/OopsBudgeter"
},
"bugs": {
"url": "https://github.com/OopsApps/OopsBudgeter/issues"
},
"funding": {
"type": "sponsor",
"url": "https://buymeacoffee.com/iconical"
},
"description": "A personal budget tracker for effortless finance management.",
"keywords": [
"budget",
"finance",
"pwa",
"nextjs",
"react"
]
}