Skip to content

Commit

Permalink
Upgrade all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Gijsdeman committed Dec 1, 2023
1 parent 2059cd4 commit 86a9766
Show file tree
Hide file tree
Showing 10 changed files with 585 additions and 4,027 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@ db/**/*

# Editors
.idea
*.iml
*.iml

tsconfig.tsbuildinfo
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# We build our container using node:16-alpine
FROM node:16-alpine AS builder
FROM node:20-alpine AS builder
ENV NODE_ENV=development

# Change dir to install dir.
Expand All @@ -22,7 +22,7 @@ RUN npx tsc


# Create production container.
FROM node:16-alpine AS prod
FROM node:20-alpine AS prod

# Set correct dir.
WORKDIR /app
Expand Down
3,877 changes: 218 additions & 3,659 deletions package-lock.json

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
"lint:fix": "eslint --fix"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-import": "^2.29.0",
"tslint": "^6.1.3",
"typescript": "^5.1.6"
"typescript": "^5.3.2"
},
"dependencies": {
"@types/node": "^20.5.0",
"@types/node": "^20.10.0",
"axios": "^1.6.2",
"ldapts": "^6.0.0",
"ldapts": "^7.0.7",
"mysql": "^2.18.1",
"replace-in-file": "^7.0.1",
"replace-in-file": "^7.0.2",
"sqlite3": "^5.1.6",
"ts-mailcow-api": "^0.8.4",
"typeorm": "^0.3.17"
Expand Down
4 changes: 1 addition & 3 deletions src/dovecotAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,4 @@ export async function setDovecotPermissions(mail: string, users: string[], permi
'', dovecotRequests,
);
}
}


}
24 changes: 12 additions & 12 deletions src/entities/SogoUserProfile.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Column, Entity, PrimaryColumn } from 'typeorm';
@Entity()
export class SogoUserProfile {
@PrimaryColumn()
c_uid!: string;

@Column()
c_defaults!: string;

@Column()
c_settings!: string;
}
import { Column, Entity, PrimaryColumn } from 'typeorm';
@Entity()
export class SogoUserProfile {
@PrimaryColumn()
c_uid!: string;

@Column()
c_defaults!: string;

@Column()
c_settings!: string;
}
Loading

0 comments on commit 86a9766

Please sign in to comment.