VirtWeb/virtweb_frontend/package.json

66 lines
1.6 KiB
JSON
Raw Normal View History

2023-09-04 12:11:56 +00:00
{
"name": "virtweb_frontend",
"version": "0.1.0",
2023-12-12 15:55:06 +00:00
"type": "module",
2023-09-04 12:11:56 +00:00
"private": true,
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
2024-10-30 20:38:29 +00:00
"@fontsource/roboto": "^5.1.0",
2023-09-04 12:11:56 +00:00
"@mdi/js": "^7.2.96",
"@mdi/react": "^1.6.1",
2024-10-30 20:38:29 +00:00
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"@mui/x-charts": "^7.22.0",
"@mui/x-data-grid": "^7.22.0",
2024-10-30 20:47:22 +00:00
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.0",
2024-04-08 16:37:17 +00:00
"@testing-library/user-event": "^14.5.2",
2023-09-08 10:23:15 +00:00
"@types/humanize-duration": "^3.27.1",
2024-10-30 20:38:29 +00:00
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
2024-06-21 00:17:18 +00:00
"@types/uuid": "^10.0.0",
2024-10-30 20:38:29 +00:00
"@vitejs/plugin-react": "^4.3.3",
"date-and-time": "^3.6.0",
"filesize": "^10.1.6",
2023-09-08 10:23:15 +00:00
"humanize-duration": "^3.29.0",
2024-10-30 20:38:29 +00:00
"mui-file-input": "^6.0.0",
2023-09-04 12:11:56 +00:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2024-04-23 17:11:50 +00:00
"react-router-dom": "^6.23.0",
2024-10-30 20:38:29 +00:00
"react-syntax-highlighter": "^15.6.1",
"react-vnc": "^2.0.2",
2024-10-30 20:47:22 +00:00
"typescript": "^4.9.5",
2024-10-30 20:38:29 +00:00
"uuid": "^11.0.2",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^5.0.1",
2024-04-08 16:37:17 +00:00
"web-vitals": "^3.5.2",
"xml-formatter": "^3.6.0"
2023-09-04 12:11:56 +00:00
},
"scripts": {
2023-12-12 15:55:06 +00:00
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
2023-09-04 12:11:56 +00:00
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}