The previous `bun:dev` script was missing the key command `bun run`. This has been corrected for proper execution of the script in the development mode.
Signed-off-by: Mathis <yidhra@tuta.io>
This commit modifies the `package.json` file in two key ways. The main file is now `src/app.ts` instead of `dist/app.js`. Additionally, a new script `bun:dev` has been added to aid in development, which watches the main file for changes.
Signed-off-by: Mathis <yidhra@tuta.io>
The security middleware `express-xss-sanitizer` has been replaced with `helmet` for enhanced security measures. `helmet` provides better protection against potential security vulnerabilities.
Signed-off-by: Mathis <yidhra@tuta.io>
The package.json has been updated to include the 'uuid' package in both main and dev dependencies. This includes the addition of 'uuid' version "^9.0.1" to the list of dependencies and '@types/uuid' version "^9.0.8" to the list of devDependencies.
Signed-off-by: Mathis <yidhra@tuta.io>