frontPanel/package.json

63 lines
1.6 KiB
JSON
Raw Normal View History

{
2022-12-03 21:37:21 +00:00
"name": "squidward",
"version": "0.1.0",
"private": true,
"dependencies": {
2023-03-03 20:07:19 +00:00
"@craco/craco": "^7.0.0",
2022-12-09 11:46:16 +00:00
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.14",
"@mui/material": "^5.10.14",
2022-12-03 21:37:21 +00:00
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.2",
2022-12-03 21:37:21 +00:00
"react-scripts": "5.0.1",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0"
},
"scripts": {
2023-03-03 20:07:19 +00:00
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "craco eject"
2022-12-03 21:37:21 +00:00
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
2022-12-09 11:46:16 +00:00
],
"rules": {
"quotes": [
"warn",
"double",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
]
}
2022-12-03 21:37:21 +00:00
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
2023-03-03 20:07:19 +00:00
},
"devDependencies": {
"craco-alias": "^3.0.1"
2022-12-03 21:37:21 +00:00
}
}