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" : {
2021-02-22 19:45:53 -05:00
"@emotion/react" : "^11.1.5" ,
"@emotion/styled" : "^11.1.5" ,
2021-03-05 19:56:51 -05:00
"@fontsource/roboto" : "^4.2.1" ,
"@material-ui/core" : "^5.0.0-alpha.26" ,
"@material-ui/icons" : "^5.0.0-alpha.26" ,
"@material-ui/lab" : "^5.0.0-alpha.26" ,
2021-03-26 16:43:04 -04:00
"@react-hook/resize-observer" : "^1.2.0" ,
2021-02-01 00:55:25 -05:00
"@types/jest" : "^26.0.20" ,
"@types/node" : "^14.14.22" ,
"@types/react" : "^17.0.0" ,
"@types/react-dom" : "^17.0.0" ,
2021-03-05 19:56:51 -05:00
"date-fns" : "^2.18.0" ,
"date-fns-tz" : "^1.1.3" ,
2021-02-01 00:55:25 -05:00
"gzipper" : "^4.4.0" ,
"react" : "^17.0.1" ,
"react-dom" : "^17.0.1" ,
"react-scripts" : "4.0.1" ,
"typescript" : "^4.1.3"
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" ,
{
"name" : "@material-ui/core" ,
"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" : "@material-ui/icons" ,
"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" : {
2021-02-01 00:55:25 -05:00
"@testing-library/jest-dom" : "^5.11.4" ,
"@testing-library/react" : "^11.1.0" ,
"@testing-library/user-event" : "^12.6.3" ,
"http-proxy-middleware" : "^1.0.6" ,
"msw" : "^0.26.1" ,
"prettier" : "2.2.1"
2017-10-22 00:54:27 -04:00
}
}