-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 KB
/
package.json
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
{
"name": "budget-craft",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"node src/server.js\"",
"build": "vite build",
"preview": "vite preview",
"start": "npm run build && node src/server.js"
},
"dependencies": {
"@heroicons/react": "^2.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tanstack/react-query": "^5.24.1",
"axios": "^1.6.7",
"cors": "^2.8.5",
"date-fns": "^3.3.1",
"express": "^4.18.2",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.22.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.1.4"
}
}