-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 860 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
{
"name": "dashboard-app",
"version": "1.0.0",
"description": "Modern dashboard application with React",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:prod": "vite build --config vite.config.simple.js",
"preview": "vite preview",
"preview:prod": "vite preview --config vite.config.prod.js",
"analyze": "vite build --config vite.config.prod.js --mode analyze"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "^7.2.0",
"@mui/x-charts": "^8.9.0",
"react": "^18.2.0",
"react-circular-progressbar": "^2.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"terser": "^5.43.1",
"vite": "^5.0.8"
}
}