-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 857 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 857 Bytes
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
{
"name": "simplebudget",
"private": true,
"version": "1.0.0",
"description": "Plan your money visually. A modern budgeting tool for tracking income, expenses, and savings with real-time charts.",
"type": "module",
"author": "",
"license": "MIT",
"keywords": ["budget", "finance", "expense-tracker", "react", "dashboard"],
"scripts": {
"dev": "vite --port=3000 --host=0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "tsc --noEmit"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"lucide-react": "^0.546.0",
"react": "^19.0.1",
"react-dom": "^19.0.1",
"vite": "^6.2.3",
"motion": "^12.23.24"
},
"devDependencies": {
"tailwindcss": "^4.1.14",
"typescript": "~5.8.2",
"vite": "^6.2.3"
}
}