-
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.57 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.57 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": "budget-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build --base=./",
"build:github": "tsc -b && vite build --base=/household-budget/ && cp dist/index.html dist/404.html",
"lint": "eslint .",
"preview": "vite preview",
"prettify": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"firebase:emulators": "firebase emulators:start",
"firebase:deploy": "npm run build && firebase deploy",
"firebase:deploy:hosting": "npm run build && firebase deploy --only hosting",
"firebase:deploy:rules": "firebase deploy --only firestore:rules",
"update-municipalities": "node scripts/update-municipality-data.js"
},
"dependencies": {
"@types/uuid": "^10.0.0",
"firebase": "^12.2.1",
"lucide-react": "^0.542.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.8.2",
"recharts": "^3.1.2",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"firebase-tools": "^14.15.2",
"globals": "^16.3.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2"
}
}