-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 875 Bytes
/
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
{
"name": "finance-app-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"json-server": "json-server --watch db.json --port 3100"
},
"dependencies": {
"@hookform/resolvers": "^3.4.2",
"@supabase/ssr": "^0.3.0",
"@supabase/supabase-js": "^2.43.4",
"json-server": "^1.0.0-beta.0",
"lucide-react": "^0.381.0",
"next": "14.2.3",
"react": "^18",
"react-cookie": "^7.1.4",
"react-dom": "^18",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.51.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@tailwindcss/forms": "^0.5.7",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"tailwindcss": "^3.4.1"
}
}