Skip to content

Commit

Permalink
Upgrade dependencies and switch yarn to node_modules
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhad6 committed Oct 2, 2023
1 parent 5417028 commit 9c1180c
Show file tree
Hide file tree
Showing 16 changed files with 1,851 additions and 1,590 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ __pycache__/
.mypy_cache/
.coverage

# Typescript
*.tsbuildinfo

# Yarn
node_modules/
.yarn/
.pnp.*
.yarnrc.yml

# SWC
.swc/
Expand Down
1 change: 1 addition & 0 deletions frontend/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
60 changes: 30 additions & 30 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,55 +9,55 @@
"preview": "vite preview",
"lint": "(tsc -b ; e=$? ; tsc -b --clean; exit $e) && eslint . && prettier --check .",
"test:unit": "jest",
"test:e2e": "wait-on http://127.0.0.1:5050 -t 1000 && wait-on http://localhost:4173 -t 1000 && poetry run cypress run",
"cy:open": "wait-on http://127.0.0.1:5050 -t 1000 && wait-on http://localhost:4173 -t 1000 && poetry run cypress open",
"test:e2e": "wait-on http://127.0.0.1:5050 -t 1000 && wait-on http://127.0.0.1:4173 -t 1000 && poetry run cypress run",
"cy:open": "wait-on http://127.0.0.1:5050 -t 1000 && wait-on http://127.0.0.1:4173 -t 1000 && poetry run cypress open",
"backend": "poetry run python cypress/backend.py"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.14.3",
"@mui/lab": "^5.0.0-alpha.139",
"@mui/material": "^5.14.4",
"@mui/icons-material": "^5.14.11",
"@mui/lab": "^5.0.0-alpha.146",
"@mui/material": "^5.14.11",
"deep-object-diff": "^1.1.9",
"fast-deep-equal": "^3.1.3",
"jotai": "^2.3.1",
"jotai": "^2.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.10",
"react-error-boundary": "^4.0.11",
"react-window": "^1.8.9",
"socket.io-client": "^4.7.2"
},
"devDependencies": {
"@swc/core": "^1.3.75",
"@swc/jest": "^0.2.28",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.9",
"@types/react": "^18.2.19",
"@types/react-dom": "^18.2.7",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"cypress": "^12.17.3",
"eslint": "^8.46.0",
"@swc/core": "^1.3.91",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.0",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"@types/react-window": "^1.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react-swc": "^3.4.0",
"cypress": "^13.3.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"prettier": "^2.8.8",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "5.0.4",
"typescript": "5.2.2",
"vite": "^4.4.9",
"wait-on": "^7.0.1",
"whatwg-fetch": "^3.6.17"
"whatwg-fetch": "^3.6.19"
},
"packageManager": "yarn@3.5.0"
"packageManager": "yarn@3.6.3"
}
Loading

0 comments on commit 9c1180c

Please sign in to comment.