-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.42 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "student-loan-repayment-calculator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write --ignore-path .gitignore .",
"analyze": "cross-env ANALYZE=true next build"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@sentry/nextjs": "^8.25.0",
"axios": "^1.7.4",
"chart.js": "^4.4.3",
"classnames": "^2.5.1",
"luxon": "^3.5.0",
"next": "^14.2.10",
"react": "^18.3.1",
"react-bootstrap-icons": "^1.11.4",
"react-chartjs-2": "^5.2.0",
"react-datepicker": "^4.25.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2",
"react-tooltip": "^5.28.0",
"tailwind-merge": "^2.4.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.5",
"@types/luxon": "^3.4.2",
"@types/node": "20.14.15",
"@types/react": "18.3.3",
"@types/react-datepicker": "^4.19.6",
"@types/react-dom": "18.3.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.9",
"typescript": "5.5.4"
},
"resolutions": {
"@types/react": "^18.2.38"
},
"packageManager": "[email protected]"
}