Skip to content

Commit

Permalink
Feature/update dependencies (#419)
Browse files Browse the repository at this point in the history
* Add "syncyarnlock" dependency

* Update dependencies

* Update versions in package.json

* Add script to update dependencies
  • Loading branch information
schroda authored Sep 17, 2023
1 parent 686f9d6 commit 4e13476
Show file tree
Hide file tree
Showing 2 changed files with 439 additions and 412 deletions.
52 changes: 27 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"build-md5": "find build -type f | sort | xargs md5sum | awk '{ print $1 }' | tr -d '\n' | md5sum| awk '{ print $1 }' > buildZip/md5sum ",
"build-zip": "cd build && rev=$(git rev-list HEAD --count) && echo r$rev > revision && zip -9 -r ../buildZip/Tachidesk-WebUI-r$rev *",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"createChangelog": "ts-node tools/scripts/createReleaseChanglog.ts"
"createChangelog": "ts-node tools/scripts/createReleaseChanglog.ts",
"updateDeps": "yarn outdated && yarn upgrade && yarn syncyarnlock -s -k && yarn && git add package.json yarn.lock && git commit -m \"Update dependencies\""
},
"browserslist": {
"production": [
Expand All @@ -25,49 +26,50 @@
]
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.2",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.3",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.9",
"@vitejs/plugin-react-swc": "^3.3.2",
"axios": "^1.4.0",
"axios": "^1.5.0",
"file-selector": "^0.6.0",
"i18next": "^23.2.7",
"i18next-browser-languagedetector": "^7.0.2",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.1",
"react-router-dom": "^6.11.2",
"react-virtuoso": "^4.3.8",
"swr": "^2.1.5",
"react-i18next": "^13.2.2",
"react-router-dom": "^6.16.0",
"react-virtuoso": "^4.5.1",
"swr": "^2.2.2",
"use-query-params": "^2.2.1",
"vite": "^4.3.9",
"vite-tsconfig-paths": "^4.2.0"
"vite": "^4.4.9",
"vite-tsconfig-paths": "^4.2.1"
},
"devDependencies": {
"@types/node": "^20.3.1",
"@types/react": "^18.2.8",
"@types/node": "^20.6.2",
"@types/react": "^18.2.21",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "^18.2.4",
"@types/react-dom": "^18.2.7",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.42.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-no-relative-import-paths": "^1.5.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.1",
"prettier": "^3.0.3",
"syncyarnlock": "^1.0.19",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"typescript": "^5.2.2",
"yargs": "^17.7.2"
}
}
Loading

0 comments on commit 4e13476

Please sign in to comment.