front-hub/package.json

63 lines
1.7 KiB
JSON
Raw Normal View History

2022-11-17 12:25:23 +00:00
{
"name": "hub_frontend",
"version": "0.1.0",
"private": true,
2023-03-22 12:53:01 +00:00
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test --env=node",
"eject": "craco eject"
},
2022-11-17 12:25:23 +00:00
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
2023-06-06 13:13:58 +00:00
"@frontend/kitui": "^1.0.2",
2022-11-18 16:51:10 +00:00
"@mui/icons-material": "^5.10.14",
2022-11-17 12:25:23 +00:00
"@mui/material": "^5.10.14",
"axios": "^1.3.4",
2022-11-29 12:23:19 +00:00
"formik": "^2.2.9",
2023-05-27 11:49:13 +00:00
"immer": "^10.0.2",
"isomorphic-fetch": "^3.0.0",
2023-03-31 15:01:13 +00:00
"notistack": "^3.0.1",
2022-11-17 12:25:23 +00:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2022-11-19 20:27:26 +00:00
"react-router-dom": "^6.4.3",
2022-12-20 16:09:54 +00:00
"reconnecting-eventsource": "^1.6.2",
"web-vitals": "^2.1.0",
2023-05-13 14:12:23 +00:00
"yup": "^1.1.1",
"zustand": "^4.3.6"
2022-11-17 12:25:23 +00:00
},
2023-03-22 12:53:01 +00:00
"devDependencies": {
2023-03-31 15:01:13 +00:00
"@craco/craco": "^7.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
2023-03-22 12:53:01 +00:00
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"craco-alias": "^3.0.1",
"jest": "^29.5.0",
2023-03-31 15:01:13 +00:00
"react-scripts": "5.0.1",
"typescript": "^4.9.3"
2022-11-17 12:25:23 +00:00
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
2023-04-06 14:55:35 +00:00
]
2022-11-17 12:25:23 +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"
]
}
2022-12-20 16:09:54 +00:00
}