mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2024-12-26 07:05:56 -05:00
f3da22fc5c
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.0.10 to 5.0.12. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.0.12/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.0.12/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
113 lines
3.2 KiB
JSON
113 lines
3.2 KiB
JSON
{
|
|
"name": "ui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@emotion/react": "^11.8.2",
|
|
"@emotion/styled": "^11.8.1",
|
|
"@fontsource/roboto": "^4.5.3",
|
|
"@mui/icons-material": "^5.10.6",
|
|
"@mui/lab": "^5.0.0-alpha.102",
|
|
"@mui/material": "^5.10.8",
|
|
"@mui/x-date-pickers": "^6.16.3",
|
|
"@react-hook/resize-observer": "^1.2.6",
|
|
"date-fns": "^2.28.0",
|
|
"date-fns-tz": "^2.0.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hook-form": "^7.41.5",
|
|
"react-hook-form-mui": "^6.5.2",
|
|
"react-router-dom": "^6.2.2"
|
|
},
|
|
"scripts": {
|
|
"check-format": "prettier --check --ignore-path .gitignore .",
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"format": "prettier --write --ignore-path .gitignore .",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
"preview": "vite preview",
|
|
"test": "vitest"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:vitest/recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:react/jsx-runtime",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"*.ts",
|
|
"*.tsx"
|
|
],
|
|
"rules": {
|
|
"no-undef": "off"
|
|
}
|
|
}
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-restricted-imports": [
|
|
"error",
|
|
{
|
|
"name": "@mui/material",
|
|
"message": "Please use the 'import Button from \"material-ui/core/Button\";' style instead; see https://material-ui.com/guides/minimizing-bundle-size/#option-1"
|
|
},
|
|
{
|
|
"name": "@mui/icons-material",
|
|
"message": "Please use the 'import MenuIcon from \"material-ui/icons/Menu\";' style instead; see https://material-ui.com/guides/minimizing-bundle-size/#option-1"
|
|
}
|
|
],
|
|
"no-unused-vars": [
|
|
"error",
|
|
{
|
|
"args": "none"
|
|
}
|
|
],
|
|
"react/no-unescaped-entities": "off"
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.23.5",
|
|
"@babel/preset-env": "^7.23.6",
|
|
"@babel/preset-react": "^7.23.3",
|
|
"@babel/preset-typescript": "^7.23.3",
|
|
"@swc/core": "^1.3.100",
|
|
"@testing-library/dom": "^8.11.3",
|
|
"@testing-library/jest-dom": "^6.1.5",
|
|
"@testing-library/react": "^13.4.0",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"@types/node": "^18.8.1",
|
|
"@types/react": "^18.0.26",
|
|
"@types/react-dom": "^18.0.10",
|
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
"@typescript-eslint/parser": "^6.14.0",
|
|
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
"eslint": "^8.55.0",
|
|
"eslint-plugin-react": "^7.33.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.5",
|
|
"eslint-plugin-vitest": "^0.3.18",
|
|
"http-proxy-middleware": "^2.0.4",
|
|
"msw": "^2.0.0",
|
|
"prettier": "^2.6.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.1.0",
|
|
"vite": "^5.0.12",
|
|
"vite-plugin-compression": "^0.5.1",
|
|
"vitest": "^1.0.4"
|
|
}
|
|
}
|