2017-10-22 00:54:27 -04:00
{
2021-02-01 00:55:25 -05:00
"name" : "ui" ,
"version" : "0.1.0" ,
"private" : true ,
2023-12-17 21:07:25 -05:00
"type" : "module" ,
2021-02-01 00:55:25 -05:00
"dependencies" : {
2022-03-16 18:46:42 -04:00
"@emotion/react" : "^11.8.2" ,
2022-03-04 11:55:06 -05:00
"@emotion/styled" : "^11.8.1" ,
"@fontsource/roboto" : "^4.5.3" ,
2022-10-03 20:59:28 -04:00
"@mui/icons-material" : "^5.10.6" ,
2022-10-03 23:55:10 -04:00
"@mui/lab" : "^5.0.0-alpha.102" ,
2022-10-03 20:59:28 -04:00
"@mui/material" : "^5.10.8" ,
2023-10-21 02:06:01 -04:00
"@mui/x-date-pickers" : "^6.16.3" ,
2023-12-17 21:07:25 -05:00
"@react-hook/resize-observer" : "^1.2.6" ,
2022-03-04 11:55:06 -05:00
"date-fns" : "^2.28.0" ,
2023-12-17 21:07:25 -05:00
"date-fns-tz" : "^2.0.0" ,
2023-01-12 01:25:56 -05:00
"react" : "^18.2.0" ,
"react-dom" : "^18.2.0" ,
2023-01-08 14:50:05 -05:00
"react-hook-form" : "^7.41.5" ,
2023-10-21 02:06:01 -04:00
"react-hook-form-mui" : "^6.5.2" ,
2023-12-17 21:07:25 -05:00
"react-router-dom" : "^6.2.2"
2017-10-22 00:54:27 -04:00
} ,
"scripts" : {
2023-12-17 21:07:25 -05:00
"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" ,
2023-12-18 02:07:28 -05:00
"test" : "vitest"
2017-10-22 00:54:27 -04:00
} ,
2021-02-01 00:55:25 -05:00
"eslintConfig" : {
"extends" : [
2023-12-17 21:07:25 -05:00
"eslint:recommended" ,
2023-12-18 02:07:28 -05:00
"plugin:vitest/recommended" ,
2023-12-17 21:07:25 -05:00
"plugin:react/recommended" ,
"plugin:react/jsx-runtime" ,
"plugin:react-hooks/recommended"
2021-02-01 00:55:25 -05:00
] ,
2023-12-17 21:07:25 -05:00
"overrides" : [
{
"files" : [
"*.ts" ,
"*.tsx"
] ,
"rules" : {
"no-undef" : "off"
}
}
] ,
"parser" : "@typescript-eslint/parser" ,
"parserOptions" : {
"ecmaVersion" : "latest" ,
"sourceType" : "module"
} ,
2021-02-01 00:55:25 -05:00
"rules" : {
"no-restricted-imports" : [
"error" ,
{
2021-09-24 13:57:29 -04:00
"name" : "@mui/material" ,
2021-02-01 00:55:25 -05:00
"message" : "Please use the 'import Button from \"material-ui/core/Button\";' style instead; see https://material-ui.com/guides/minimizing-bundle-size/#option-1"
} ,
{
2021-09-24 13:57:29 -04:00
"name" : "@mui/icons-material" ,
2021-02-01 00:55:25 -05:00
"message" : "Please use the 'import MenuIcon from \"material-ui/icons/Menu\";' style instead; see https://material-ui.com/guides/minimizing-bundle-size/#option-1"
}
2023-12-17 21:07:25 -05:00
] ,
"no-unused-vars" : [
"error" ,
{
"args" : "none"
}
] ,
"react/no-unescaped-entities" : "off"
} ,
"settings" : {
"react" : {
"version" : "detect"
}
2021-02-01 00:55:25 -05:00
}
} ,
2017-10-22 00:54:27 -04:00
"devDependencies" : {
2023-12-17 21:07:25 -05:00
"@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" ,
2022-03-03 17:39:08 -05:00
"@testing-library/dom" : "^8.11.3" ,
2023-12-18 02:07:28 -05:00
"@testing-library/jest-dom" : "^6.1.5" ,
2023-01-12 01:25:56 -05:00
"@testing-library/react" : "^13.4.0" ,
"@testing-library/user-event" : "^14.4.3" ,
2023-12-17 21:07:25 -05:00
"@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" ,
2023-12-18 02:07:28 -05:00
"eslint-plugin-vitest" : "^0.3.18" ,
2022-03-16 18:46:42 -04:00
"http-proxy-middleware" : "^2.0.4" ,
2023-12-18 02:37:07 -05:00
"msw" : "^2.0.0" ,
2023-12-17 21:07:25 -05:00
"prettier" : "^2.6.0" ,
"ts-node" : "^10.9.2" ,
"typescript" : "^5.1.0" ,
"vite" : "^5.0.8" ,
2023-12-18 02:07:28 -05:00
"vite-plugin-compression" : "^0.5.1" ,
"vitest" : "^1.0.4"
2017-10-22 00:54:27 -04:00
}
}