Compare commits

...

2 Commits

Author SHA1 Message Date
Gauthier
55cf903bf6 fix: add bcrypt to the build only dependencies 2025-01-22 12:56:21 +01:00
gauthier-th
334502a8c9 refactor: upgrade to pnpm 10 2025-01-22 00:11:24 +01:00
4 changed files with 4064 additions and 5595 deletions

2
next-env.d.ts vendored
View File

@@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" /> /// <reference types="next/image-types/global" />
// NOTE: This file should not be edited // NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information. // see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.

View File

@@ -169,8 +169,8 @@
"typescript": "4.9.5" "typescript": "4.9.5"
}, },
"engines": { "engines": {
"node": "^22.0.0", "node": "^23.0.0",
"pnpm": "^9.0.0" "pnpm": "^10.0.0"
}, },
"overrides": { "overrides": {
"sqlite3/node-gyp": "8.4.1", "sqlite3/node-gyp": "8.4.1",
@@ -245,5 +245,11 @@
}, },
"@semantic-release/github" "@semantic-release/github"
] ]
},
"pnpm": {
"onlyBuiltDependencies": [
"sqlite3",
"bcrypt"
]
} }
} }

9645
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -165,7 +165,7 @@ app
} }
}); });
if (settings.main.csrfProtection) { if (settings.main.csrfProtection) {
server.use( server.use(() =>
csurf({ csurf({
cookie: { cookie: {
httpOnly: true, httpOnly: true,