-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 852 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 852 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
32
33
34
35
36
37
38
39
{
"name": "finance-visualizer",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1",
"recharts": "2.13.3",
"@nivo/core": "0.87.0",
"@nivo/sunburst": "0.87.0",
"papaparse": "5.4.1",
"idb": "8.0.0",
"date-fns": "4.1.0",
"lucide-react": "0.460.0"
},
"devDependencies": {
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/papaparse": "5.3.15",
"@vitejs/plugin-react": "4.3.4",
"typescript": "5.6.3",
"vite": "5.4.21",
"tailwindcss": "3.4.17",
"autoprefixer": "10.4.20",
"postcss": "8.4.49"
},
"overrides": {
"esbuild": "^0.25.0",
"vite": {
"esbuild": "^0.25.0"
}
}
}