2017-10-22 00:54:27 -04:00
{
2021-02-01 00:55:25 -05:00
"name" : "ui" ,
"version" : "0.1.0" ,
"private" : true ,
"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" ,
2022-10-03 23:51:39 -04:00
"@mui/x-date-pickers" : "^5.0.3" ,
2022-03-04 11:55:06 -05:00
"@react-hook/resize-observer" : "^1.2.5" ,
"@types/jest" : "^27.4.1" ,
2022-10-04 00:18:49 -04:00
"@types/node" : "^18.8.1" ,
2022-03-16 18:46:42 -04:00
"@types/react" : "^17.0.40" ,
2022-03-04 11:55:06 -05:00
"@types/react-dom" : "^17.0.13" ,
"date-fns" : "^2.28.0" ,
"date-fns-tz" : "^1.3.0" ,
"gzipper" : "^7.0.0" ,
2021-02-01 00:55:25 -05:00
"react" : "^17.0.1" ,
"react-dom" : "^17.0.1" ,
2022-03-04 11:55:06 -05:00
"react-router-dom" : "^6.2.2" ,
2022-03-03 17:48:20 -05:00
"react-scripts" : "^5.0.0" ,
2022-10-04 00:13:33 -04:00
"typescript" : "^4.8.4"
2017-10-22 00:54:27 -04:00
} ,
"scripts" : {
2021-02-01 00:55:25 -05:00
"start" : "react-scripts start" ,
"build" : "react-scripts build && gzipper compress --exclude=png,woff2 --remove-larger ./build" ,
"test" : "react-scripts test" ,
"eject" : "react-scripts eject" ,
"format" : "prettier --write src/ public/" ,
"check-format" : "prettier --check src/ public/" ,
2021-01-22 17:43:41 -05:00
"lint" : "eslint src"
2017-10-22 00:54:27 -04:00
} ,
2021-02-01 00:55:25 -05:00
"eslintConfig" : {
"extends" : [
"react-app" ,
"react-app/jest"
] ,
"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"
}
]
}
} ,
"browserslist" : {
"production" : [
">0.2%" ,
"not dead" ,
"not op_mini all"
] ,
"development" : [
"last 1 chrome version" ,
"last 1 firefox version" ,
"last 1 safari version"
]
2017-10-22 00:54:27 -04:00
} ,
"devDependencies" : {
2022-03-03 17:39:08 -05:00
"@testing-library/dom" : "^8.11.3" ,
"@testing-library/jest-dom" : "^5.16.2" ,
2022-03-16 18:46:42 -04:00
"@testing-library/react" : "^12.1.4" ,
2022-03-03 17:39:08 -05:00
"@testing-library/user-event" : "^13.5.0" ,
2022-03-16 18:46:42 -04:00
"http-proxy-middleware" : "^2.0.4" ,
2022-10-04 00:13:33 -04:00
"msw" : "^0.47.4" ,
2022-03-16 18:46:42 -04:00
"prettier" : "^2.6.0"
2017-10-22 00:54:27 -04:00
}
}