Update deps, fix Docker build errors

This commit is contained in:
Darren Clarke 2024-05-14 09:40:58 +02:00
parent 162390008b
commit c62bfd2a4c
31 changed files with 832 additions and 1227 deletions

View file

@ -13,7 +13,8 @@
"migrate:down:one": "tsx database/migrate.ts down:one"
},
"dependencies": {
"@auth/kysely-adapter": "^1.0.0",
"@auth/kysely-adapter": "^1.1.0",
"graphile-worker": "^0.16.6",
"kysely": "0.26.1",
"pg": "^8.11.5"
},
@ -24,7 +25,7 @@
"eslint": "^9.0.0",
"prettier": "^3.2.5",
"ts-config": "*",
"tsx": "^4.9.3",
"tsx": "^4.10.2",
"typescript": "^5.4.5"
}
}

View file

@ -5,6 +5,7 @@
"build": "tsc -p tsconfig.json"
},
"dependencies": {
"@auth/kysely-adapter": "^1.1.0",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/server": "^11.11.0",
@ -12,9 +13,10 @@
"@mui/icons-material": "^5",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5",
"@mui/x-data-grid-pro": "^7.3.2",
"@mui/x-date-pickers-pro": "^7.3.2",
"@mui/x-data-grid-pro": "^7.4.0",
"@mui/x-date-pickers-pro": "^7.4.0",
"date-fns": "^3.6.0",
"kysely": "0.26.1",
"material-ui-popup-state": "^5.1.0",
"next": "14.2.3",
"react": "18.3.1",
@ -29,8 +31,9 @@
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@types/node": "^20.12.10",
"@types/react": "18.3.1",
"@types/node": "^20.12.11",
"@types/react": "18.3.2",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"babel-loader": "^9.1.3",
"eslint": "^8.0.0",

File diff suppressed because one or more lines are too long

View file

@ -10,8 +10,8 @@
},
"dependencies": {
"@rushstack/eslint-patch": "^1.10.2",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo-space": "^0.35.0",
"eslint-plugin-cypress": "^3.2.0",
@ -20,7 +20,7 @@
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "52.0.0",
"eslint-plugin-unicorn": "53.0.0",
"@babel/eslint-parser": "7.24.5"
},
"peerDependencies": {

View file

@ -12,8 +12,8 @@
"@mui/icons-material": "^5",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5",
"@mui/x-data-grid-pro": "^7.3.2",
"@mui/x-date-pickers-pro": "^7.3.2",
"@mui/x-data-grid-pro": "^7.4.0",
"@mui/x-date-pickers-pro": "^7.4.0",
"opensearch-common": "*",
"date-fns": "^3.6.0",
"material-ui-popup-state": "^5.1.0",
@ -30,8 +30,8 @@
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@types/node": "^20.12.10",
"@types/react": "18.3.1",
"@types/node": "^20.12.11",
"@types/react": "18.3.2",
"@types/uuid": "^9.0.8",
"babel-loader": "^9.1.3",
"eslint": "^8.0.0",

View file

@ -1,6 +1,5 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,

File diff suppressed because one or more lines are too long

View file

@ -5,13 +5,13 @@
"build": "tsc -p tsconfig.json"
},
"dependencies": {
"@opensearch-project/opensearch": "^2.7.0",
"@opensearch-project/opensearch": "^2.8.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@types/node": "^20.12.10",
"@types/react": "18.3.1",
"@types/node": "^20.12.11",
"@types/react": "18.3.2",
"@types/uuid": "^9.0.8",
"babel-loader": "^9.1.3",
"eslint": "^8.0.0",

File diff suppressed because one or more lines are too long

View file

@ -19,6 +19,6 @@
"pretty": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"types": ["node", "jest"]
"types": ["node"]
}
}

View file

@ -11,15 +11,15 @@
"@mui/icons-material": "^5",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5",
"@mui/x-data-grid-pro": "^7.3.2",
"@mui/x-date-pickers-pro": "^7.3.2",
"@mui/x-data-grid-pro": "^7.4.0",
"@mui/x-date-pickers-pro": "^7.4.0",
"next": "14.2.3",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@types/node": "^20.12.10",
"@types/react": "18.3.1",
"@types/node": "^20.12.11",
"@types/react": "18.3.2",
"typescript": "^5.4.5"
}
}

File diff suppressed because one or more lines are too long